fix loop redirecting

server is redirecting the request for this address in a way that will never complete
This commit is contained in:
bizonix 2015-06-07 21:50:41 +03:00
parent 47de93961e
commit 2c90c267bd
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Proxy /admin to our Python based control panel daemon. It is
# listening on IPv4 only so use an IP address and not 'localhost'.
rewrite ^/admin$ /admin/;
rewrite ^/admin/munin$ /admin/munin redirect;
rewrite ^/admin/munin$ /admin/munin/ redirect;
location /admin/ {
proxy_pass http://127.0.0.1:10222/;
proxy_set_header X-Forwarded-For $remote_addr;