creating a /subsonic url
Hola,
I'm trying to create a /subsonic url that redirects/proxies to :4040
I got so far as to edit apache2/sites-enabled config with this:
I also modified UrlRedirectContextPath=/subsonic in subsonic.properties.
Then I restarted.
But somehow it doesnt work, it says 403
If I added
to the sites-enabled config Jetty displays a 404. As if Subsonic wouldn't recognize the UrlRedirectContextPath.
What am I doing wrong?
I'm trying to create a /subsonic url that redirects/proxies to :4040
I got so far as to edit apache2/sites-enabled config with this:
- Code: Select all
ProxyPass /subsonic http://server.com:4040/subsonic
ProxyPassReverse /subsonic http://server.com:4040/subsonic
I also modified UrlRedirectContextPath=/subsonic in subsonic.properties.
Then I restarted.
But somehow it doesnt work, it says 403
If I added
- Code: Select all
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
to the sites-enabled config Jetty displays a 404. As if Subsonic wouldn't recognize the UrlRedirectContextPath.
What am I doing wrong?