try fixing subpath proxy

This commit is contained in:
Collin M. Barrett 2019-09-02 15:50:04 -05:00
parent 9736bf6b0a
commit 83ef26f8d7

View file

@ -22,7 +22,10 @@ server {
}
location / {
proxy_pass http://web:80/;
if (!-e $request_filename) {
rewrite http://web:80 break;
}
proxy_pass http://web:80;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;