hello, I’ve been trying to setup WebODM as path on my nginx.
I have 2 machines, one is local (phenom) and seccond is VPS (Frank).
Phenom hosts WebODM, Frank hosts NGINX and wireguard for reverse proxy.
My goal is to be able to paste http://frank/odm
and get http://frank/odm/login
What im stuck at is whenever I paste http://frank/odm
, I receive http://frank/login
with 404 error message.
My nginx config looks like soo:
server {
listen 80;
listen [::]:80;
server_name frank;
location /test/ {
proxy_pass http://phenom:80/test/;
}
location /odm {
proxy_pass http://phenom:8000;
}
}
Any ideas?