Actions
Task #5408
openUpate nginx documentation for non standard SSL port
Status:
Resolved
Priority:
Low
Assignee:
-
Target version:
-
Start date:
02.12.2017
Due date:
% Done:
0%
Estimated time:
Sorting:
Commit Number:
Description
I'm currently in an evaluation process for rhodecode. During my test setup it give me a headache that the given nginx example was not working fully in my set up (login and logout were getting a timeout although the user was logged in / out).
After a long search I figured out that the non standard SSL port was the issue. This can easily be fixed by replacng the following in the proxy.conf file (https://docs.rhodecode.com/RhodeCode-Enterprise/admin/nginx-tuning.html) :
replace:
proxy_set_header Host $host;
with:
proxy_set_header Host $host:$server_port;
I hope this helps some other guys in the future ;)
Actions