Nginx reverse proxy for Angular apps
I have created a reverse proxy using Nginx which redirects in various applications (ASP.NET API's and Angular app's). Reverse proxy nginx.conf (the most important settings): ... server { listen 80; server_name localhost 127.0.0.1; location /projects/sample-app1/api { proxy_pass http://sample-app1-api:80; } location…