nginx small fix
previous configuration was resulting in double slash, like GET //index.php; thanks, logging!
This commit is contained in:
parent
906be5506f
commit
5b021cbf84
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ server {
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /rss-bridge {
|
location /rss-bridge/ {
|
||||||
resolver 127.0.0.11 ipv6=off;
|
resolver 127.0.0.11 ipv6=off;
|
||||||
proxy_pass http://rss-bridge/;
|
proxy_pass http://rss-bridge/;
|
||||||
proxy_read_timeout 60s;
|
proxy_read_timeout 60s;
|
||||||
|
|
Loading…
Reference in a new issue