Hey there,
has anybody been successful publishing the OMV webgui with an reverse proxy? This is my configuration:
Code
location /omv/ {
rewrite ^/omv(/.*)$ $1 break;
proxy_pass http://myomvserver:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_redirect off;
}
As you can see, I want to publish the web gui from a folder on the reverse proxy. I can see the login page, but the login does not work. Any working configuration that you can share?
Cheers,
Klaus