Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Docker Proxy settings for ISPconfig with nginx
location / {
proxy_pass http://localhost:2080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
access_log off;
log_not_found off;
allow all;
}
location ~ \.php$ {##delete##
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment