Hi, i hope somebody can help me.
I have installed the LMS and its avaliable with the adress: http://localhost:9000
Now i want to make it avaliable under the adress http://myDynDomain/radio. Because i don't want to do run only for this small job a VM, i installed the windows binaires of apache2.2.22 and tried to setup a revers proxy as discribed in this tutorial http://wiki.slimdevices.com/index.php/CleanURL
But it doesn't work :(
I got this: http://i.imgur.com/8sNgAcW.png
My "config" looks like:
Can anybody help?
Thanks
I have installed the LMS and its avaliable with the adress: http://localhost:9000
Now i want to make it avaliable under the adress http://myDynDomain/radio. Because i don't want to do run only for this small job a VM, i installed the windows binaires of apache2.2.22 and tried to setup a revers proxy as discribed in this tutorial http://wiki.slimdevices.com/index.php/CleanURL
But it doesn't work :(
I got this: http://i.imgur.com/8sNgAcW.png
My "config" looks like:
Code:
<VirtualHost *:80>
ServerAdmin myMail@myMailProvider.de
#DocumentRoot "C:/apache/htdocs/"
ServerName localhost
ProxyRequests Off
ProxyPass /radio/ http://localhost:9000/
#ProxyPassReverse /radio http://localhost:9000
ProxyHTMLURLMap http://localhost:9000 /radio
<Location /radio/>
Order allow,deny
Allow from all
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLURLMap / /radio/
ProxyHTMLURLMap /radio /radio
RequestHeader unset Accept-Encoding
</Location>
</VirtualHost>
Thanks