mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
try fixing subpath proxy
This commit is contained in:
parent
9736bf6b0a
commit
83ef26f8d7
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue