Hey, has anyone ever had an issue running a website through nginx that is accessible from the EVE Online in-game browser?
I know the in-game browser sends invalid headers:
Taken from tcpdump:
EVE_CORPNAME: Bite Me inc
EVE_CONSTELLATIONID: 21000263
EVE_SHIPID: 1008358396247
EVE_SHIPNAME: Test
In my nginx config I have:
server {
... snip ...
underscores_in_headers on;
ignore_invalid_headers off;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_header EVE_SHIPNAME;
...
}
But I can clearly see from the backend Python FCGI process that none of the custom EVE headers are coming through.
nginx/0.7.67
Any ideas?
Edited 2 time(s). Last edit at 12/12/2012 05:04PM by Kura.