This is how I do it:

Code:
--------------------
    <VirtualHost *:80>
  ServerName slimserver.mydomain.com
  ServerAlias slimserver.mydomain.com
  ErrorLog logs/slimserver-error_log
  CustomLog logs/slimserver-access_log combined
  
  ProxyRequests Off
  ProxyPreserveHost On
  
  <Proxy *>
  Order deny,allow
  Allow From my.ip.range
  </Proxy>
  ProxyPass / http://myserver.mydomain.com:9000/
  ProxyPassReverse / http://myserver.mydomain.com:9000/
  </VirtualHost>
--------------------


In my case it's the same computer but it could be any server...
I decided that I only need to be able to access it on my own network
hence the slimserver.mydomain.com is only resolvable in my own domain.


-- 
servies
------------------------------------------------------------------------
servies's Profile: http://forums.slimdevices.com/member.php?userid=9496
View this thread: http://forums.slimdevices.com/showthread.php?t=31571

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

Reply via email to