Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: ProxyPass Subsonic Media server ? |
|
Author |
|
jaystar
Joined: 06 Sep 2017 Posts: 1 Location: UK
|
Posted: Wed 06 Sep '17 13:59 Post subject: ProxyPass Subsonic Media server ? |
|
|
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: 121 Location: U.S
|
|
Back to top |
|
Izomye
Joined: 15 Dec 2016 Posts: 17 Location: Hammerfest
|
Posted: Thu 07 Sep '17 18:18 Post subject: |
|
|
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 |
|
|
|
|
|
|