various fixes

This commit is contained in:
bunkerity
2020-11-13 17:57:39 +01:00
parent 8cdc155ac0
commit 0f0593456c
21 changed files with 22 additions and 22 deletions

View File

@@ -3,10 +3,10 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
if ($host = app1.website.com) {
proxy_pass http://app1:3000$request_uri;
proxy_pass http://app1:3000;
}
if ($host = app2.website.com) {
proxy_pass http://app2$request_uri;
proxy_pass http://app2;
}
}