Content
You are here:
Openproject fails behind reverse proxy
Added by Geoff Mntl about 5 years ago
Hi team:
I tried to install Openproject behind reverse proxy NGINX. My unicorn workers are listening to 127.0.0.1:6000
and it's working well (I got everything) when getting the service with local browser.
I set up NGINX wieso:
proxy_buffering off;
proxy_pass http://127.0.0.1:6000/;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Server $host:$server_port;
tcp_nodelay on;
And when I'm getting the page behind the RVP, it shows blank page with just the title. Source code of page are indeed showing display:none
divs, including a "Loading..." ajax div. Inspector report only HTTP/302 or HTTP/200 response codes.
Can you help me troubleshoot my setup? Thank you very much for your help!
Replies (1)
https://community.openproject.com/topics/12652 - this?