Conversation
Notices
-
This is part of an #nginx config. I don't know anything about nginx other than it's a web server that is supposedly more performant than Apache. Does anyone see anything obviously wrong with it?
location /lol {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 180;
proxy_set_header X-Forwarded-Proto https;
add_header Front-End-Https on;
client_max_body_size 100M;
proxy_pass http://host_running_swarm;
}
-
I guess the ultimate issue would be helpful. Seems Apache, PHP, and nginx are combining to form improper URLs...but only for some of the URLs...