Added by William Murray almost 9 years ago
I just completed the docker install of openproject on a new ubuntu web server, running a LEMP stack.
I was going to do a proxy_pass from nginx to openproject, but I’m embarrassed to say I’m not even sure where I can find out what the openproject containers root folder is or the TCP port number it runs on?
Replies (1)
Looks like I just needed to proxy_pass to port 8080 - All good now :)
location / {
proxy_pass $backend_protocol://$backend_host:8080;
}