I'm trying to access Subsonic via an nginx reverse proxy. The nginx config is:
- Code: Select all
location /subsonic/ {
proxy_pass http://localhost:4040/;
rewrite ^/subsonic$ /subsonic/ permanent;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Everything else for subsonic is the default settings, port 4040 etc.
With this, I can access subsonic but there are many dead image and other links. I am sure I am missing something simple but cant see where or what.
Any help would be appreciated. Thanks!