kamaradclimber wrote:there is no change, the same error message appears if i try to restart the apache server
(but it doesnt stop if i say so)
it doesnt matter, if subsonic works i'm happy
thanks you a lot !
I had been looking over this and was interested in getting it to work. I am using a LAMP server on Ubuntu Server with Apache 2.2.
What I had to do to get passed the same problem you are having.
Install mod_proxy:
sudo apt-get install libapache2-mod-proxy-html
sudo a2enmod proxy
I had to edit /var/subsonic/standalone/subsonic.sh
SUBSONIC_CONTEXT_PATH=/music
Edit /etc/apache2/sites-enabled/mysite.com and add the lines:
ProxyPass /music http://localhost:8080/music
ProxyPassReverse /music http://localhost:8080/music
Kill the previous subsonic PID, restart apache, start subsonic.sh
Now I can go to http://www.mysite.com/music with no problems.
Hope this helps someone