logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: ProxyPass Subsonic Media server ?
Author
jaystar



Joined: 06 Sep 2017
Posts: 1
Location: UK

PostPosted: Wed 06 Sep '17 13:59    Post subject: ProxyPass Subsonic Media server ? Reply with quote

Good Afternoon all, I have configured my Ubuntu Server and have Apache installed and working. I am using subsonic Media server which uses port 4040 and therefor have setup reverse proxy (I think I have). If I goto my domain once it loads from my server its showing the my IP and port number rather than my Domain name. I have no idea where to start.

Here is my vhost file

Code:
<VirtualHost *:80>
        ServerAdmin subsonic.jaystartech.co.uk
        ServerName jaystartech.co.uk
        ServerAlias www.jaystartech.co.uk
        DocumentRoot /var/www


        ProxyPass / http://localhost:4040/
   ProxyPassReverse / http://localhost:4040/
   Header always unset X-Frame-Options

        </VirtualHost>


Apache version 2.4.18

Thank you
Back to top
puertoblack2003



Joined: 31 Jul 2009
Posts: 118
Location: U.S

PostPosted: Thu 07 Sep '17 6:03    Post subject: Reply with quote

if i remember, you have to go through them see here http://www.subsonic.org/pages/getting-started.jsp#2 that was the way i had to do it years ago.
Back to top
Izomye



Joined: 15 Dec 2016
Posts: 17
Location: Hammerfest

PostPosted: Thu 07 Sep '17 18:18    Post subject: Reply with quote

Please set it to:

Code:
<VirtualHost *:80>
        ServerAdmin subsonic.jaystartech.co.uk
        ServerName jaystartech.co.uk
        ServerAlias www.jaystartech.co.uk

        ProxyRequests Off
        ProxyPass / http://localhost:4040/
        ProxyPassReverse / http://localhost:4040/
        Header always unset X-Frame-Options
</VirtualHost>


and check it again. If it the same. Remove "Header always unset X-Frame-Options"

I used a same one with DVBViewerMediaserver and SSL
Back to top


Reply to topic   Topic: ProxyPass Subsonic Media server ? View previous topic :: View next topic
Post new topic   Forum Index -> Apache