0

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.

10
  • Your site seems to be working fine. What is the problem you are having? Commented Aug 14, 2021 at 22:51
  • sudo nano a2ensite streaming.conf shouldn't contain nano Commented Aug 14, 2021 at 23:07
  • you're also missing // in ProxyPassReverse / http:192.168.0.203:8096/ Commented Aug 14, 2021 at 23:24
  • @MichaelHampton thats just my main page for fusion.tk. Commented Aug 15, 2021 at 19:35
  • @tomasz I may of typed that by accednet. I missed that thanks. But it is still not showing up. I am lost to why this does not work. Spent all day yesterday working on this :( Commented Aug 15, 2021 at 19:41

1 Answer 1

1

I edited my streaming.conf file and added the bellow

<Proxy http://192.168.0.203:8096> Require all granted Options None </Proxy> 

and now I am able to access streaming.fusion.tk

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.