Using multiple nginx config files in sites-available with proxy pass
I am wanting to use multiple files declared at /etc/nging/sites-available/ symlinked to: /etc/nginx/sites-enabled/ Now the files look similar to below - call this team1.conf: server { listen 80; location /team1/app3/location/region { rewrite ^/team1/app3/location/region(.*) /path3/healthcheck$1 break; proxy_pass https://this.is.the.backend.app.example; } location /team1/app4/location/region…