I've been a long time subsonic user, over a decade. My workplace recently decided to block any ports other than 80, so I can no longer access my subsonic server at mysite:4040. I've set up a reverse proxy in Apache so mysite/subsonic routes to mysite:4040. The login pages don't work though and I get a 404 error. While testing this at home, if I'm already logged in on another tab and go to mysite/subsonic the page partially loads, but no images and no player. But the data is there. I feel like I'm close, but not quite there.
This is what I have set in my apache .conf file:
- Code: Select all
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /subsonic/ http://127.0.0.1:4040/
ProxyPassReverse /subsonic/ http://127.0.0.1:4040/
Any suggestions would be appreciated. Thanks.