Page 1 of 1

Using an App to Access Subsonic via an Apache Virtual Host

PostPosted: Tue Apr 23, 2013 10:47 pm
by EchoLynx
I'm running Subsonic on a Debian VPS, along with Apache2. I want to be able to access subsonic at music.ianegland.name, but still be able to run Apache. I figured out how to do this using Apache's http_proxy mod.

music.ianegland.name has the following virtual host configuration:
Code: Select all
<VirtualHost 66.228.34.184:80>
   ServerAdmin   ***@***.***
   ServerName   music.ianegland.name
   ProxyPreserveHost On
   ProxyRequests Off
   ProxyPass / http://localhost:8080/
   ProxyPassReverse / http://localhost:8080/
</VirtualHost>

<VirtualHost [2600:3c03::f03c:91ff:fe93:c2ee]:80>
   ServerAdmin ***@***.***
   ServerName music.ianegland.name
   ProxyPreserveHost On
   ProxyRequests Off
   ProxyPass / http://localhost:8080/
   ProxyPassReverse / http://localhost:8080/
</VirtualHost>


Subsonic 4.7 is running on port 8080.

This works, but but not with SonicAir (a BlackBerry Playbook app).

How is this configuration blocking SonicAir from accessing Subsonic?