'Do I need reverse proxy like nginx for Azure web app service?
This is a very basic question, but I couldn't find a clear answer.
So, normally a reverse proxy should stand before web servers (i.e. expressjs). But most Azure Web App Service examples don't consider reverse proxy.
So, are there some functions in Azure Web Service that act as a reverse proxy?
Or do we still have to add a reverse proxy? If so, could you point out a good example? Azure Web App Service only supports a single container, but a common way is to put a reverse proxy and a web server in separate containers.
Solution 1:[1]
- You can deploy existing app service/container, which runs
NGINXand can perform the work of a reverse proxy, which sits directly in front of your another Host. - To configure
Nginxas a reverse proxy to forward HTTP requests to your ASP.NET Core app, modify/etc/nginx/sites-available/default.
Please refer Configure a reverse proxy server for more information.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | HarshithaVeeramalla-MT |
