Hi all I am trying to use a virtual host to forward streaming.fusion.tk to my internal emby server form my webserver.
I have setup a config file called streaming.conf in /etc/apache2/sites-available/
<VirtualHost *>
ServerName streaming.fusion.tk
ServerAdmin fusion@localhost
ProxyRequests off
<Proxy "*">
Order deny, allow
Allow from all
</Proxy>
ProxyPass / http://192.168.0.203:8096/
ProxyPassReverse / http:192.168.0.203:8096/
</VirtualHost>
I enabled the site using sudo nano a2ensite streaming.conf and restarted the apache2 service
When I try and get to the site I am not able to access anything.
Some help would be appriciated.