Hi,
I have Subsonic running on Debian on port 4040. But now I want to be able to listen to my music from work, so I have enabled proxy_http for Apache2,
then added the following to my virtual host running on port 80:
<Proxy http://127.0.0.1:8080>
Allow from all
</Proxy>
ProxyPreserveHost on
ProxyPass /subsonic/ http://127.0.0.1:4040/
ProxyPassReverse /subsonic/ http://127.0.0.1:4040/
I then restarted apache2 service and accessed my web page using http://127.0.0.1... Works well so far,
I then tested http://127.0.0.1/subsonic/ and it takes me to the Subsonic page, but a lot of images etc are broken.
I've identified it to be because Subsonic is not looking in the subfolder "subsonic" (http://127.0.0.1/subsonic), but directly under the root still.
Now, where does Subsonic store these settings? I need it to run under /subsonic/ directory.
Thanks!