You are not logged in.
I've installed apache and have several vhosts running properly.
I recently installed logitechmediaserver, which has its own web server running on port 9000 and would like to use a virtual host section for reverseproxying this port
here is my vhost section
<VirtualHost 10.20.30.1:80>
ServerAdmin admin@server.ourhome.net
ServerName lms.ourhome.net
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Require all granted
</Proxy>
ProxyPass / http://localhost:9000/
ProxyPassReverse / http://localhost:9000/
<Location / >
Require all granted
</Location>
</VirtualHost>
I can access the logitechmediaserver directly using 10.20.30.1:9000 but don't get any response using lms.ourhome.net
Any suggestions?
Solved.....realized that I hadn't added the A & PTR records to the DNS server
Last edited by gillecaluim (2015-02-10 04:36:09)
Offline