Hello there.
I’m trying to set up an Ubuntu box where I can access Webodm via https:///webodm since I have other web services running on this box and don’t want to open up another port in the firewall. These other web services all use nginx proxy to other ports with no problems.
A post from earlier this year had a similar starting point to myself for the nginx location config that I’d like to investigate further:
location /webodm {
proxy_pass http://127.0.0.1:8000/;
}
When I access the site, I get the 302 redirect, then the subsequent requests get Not Found (404).
302 GET https://<host>/webodm
404 GET https://<host>/login
For grins, if I try https:///webodm/login, I do get ‘something’ further happening:
302 GET https://<host>/webodm
200 GET https://<host>/webodm/login
404's from this point on reading the web site files
But every GET fails at this point. I’m not doing anything special in the startup:
$ sudo ./webodm.sh start
If anyone has a working nginx config file that they could pass thins along, that would be appreciated.