Hello all!
I have a main house server that runs apache as my http server. I have a
second machine that is my media server that houses all my media and runs
my media "apps" like squeezebox. I'd like to setup apache to proxy
squeezeboxserver to "the world" (behind a password of course). 

right now I have this:

Code:
--------------------
    
  ProxyRequests Off
  ProxyPass /squeeze http://192.168.1.152:9000
  ProxyPassReverse /squeeze http://192.168.1.152:9000
  <Location /squeeze>
  Options Indexes FollowSymLinks MultiViews
  AuthUserFile /etc/apache2/htpasswd
  AuthName "Authenticate Yourself."
  AuthType Basic
  Require valid-user
  Order allow,deny
  Allow from all
  </Location>
  
--------------------


but all I get is the "Loading Squeezebox Server" screen, from within
the network it works fine though.

does anyone have a similar setup working that could clue me in?

thanks!


-- 
TinCanFury
------------------------------------------------------------------------
TinCanFury's Profile: http://forums.slimdevices.com/member.php?userid=47872
View this thread: http://forums.slimdevices.com/showthread.php?t=88543

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to