Apache proxy forward no longer working after update to 5.0
I have been running Subsonic 4.x for ages with Apache2 proxy forwarding my Subsonic Jetty to Apache without any issues at all.
Today after updating to Subsonic 5.0 the proxy forwarding no longer works as expected to.
If I go to
If I go to
Here is my Apache configuration:
Do you guys have any suggestions on what to do here? This is driving me nuts! What has changed from version 4.x to 5.0 that can affect this?
I am thinking it might be some issue with base dir for the web HTML code?
Today after updating to Subsonic 5.0 the proxy forwarding no longer works as expected to.
If I go to
- Code: Select all
http://myserver/subsonic
- Code: Select all
http://myserver/index.view
If I go to
- Code: Select all
http://myserver/subsonic/
- Code: Select all
http://myserver/
Here is my Apache configuration:
- Code: Select all
<VirtualHost *:80>
RewriteEngine On
ServerAdmin webmaster@pennybridge.dyndns.org
DocumentRoot /home/www/sites/default/
<Directory /home/www/sites/default/>
AllowOverride All
Order allow,deny
Allow from all
</Directory>
#
# Logging
#
ErrorLog ${APACHE_LOG_DIR}/sites/default/error.log
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/sites/default/access.log combined
#
# Proxy forwarding for default virtual host
#
ProxyRequests Off
ProxyPreserveHost On
# Transmission Web
<Proxy *:9091>
AddDefaultCharset off
Order Allow,Deny
Allow from all
</Proxy>
# Redirect requests to /transmission to /transmission/web
RewriteRule /transmission[/]?$ /transmission/web/ [R=permanent]
ProxyPass /transmission http://127.0.0.1:9091/transmission
ProxyPassReverse /transmission http://127.0.0.1:9091/transmission
# Subsonic
<Proxy *:4040>
Order Allow,Deny
Allow from all
</Proxy>
ProxyPass /subsonic http://127.0.0.1:4040
ProxyPassReverse /subsonic http://127.0.0.1:4040
</VirtualHost>
Do you guys have any suggestions on what to do here? This is driving me nuts! What has changed from version 4.x to 5.0 that can affect this?
I am thinking it might be some issue with base dir for the web HTML code?