cliveb Wrote: 
> I'm not familiar with what the <Location> section is supposed to do, but
> concerning the ProxyPass directives, have you remembered to load the
> appropriate proxy modules (in this case, I think you need to load the
> modules called "proxy_module" and "proxy_http_module")?

I did all of those things...  I should have included how they were
configured as well.  Debian does this a bit different.  All of this
info comes from about 5 different files, so I forgot to include it. 
Thanks for the advice though.



Code:
--------------------
    
  LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
  LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so
  LoadModule disk_cache_module /usr/lib/apache2/modules/mod_disk_cache.so
  LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
  LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
  LoadFile /usr/lib/libxml2.so
  
  <IfModule mod_proxy.c>
  
  ProxyRequests Off
  
  <Proxy *>
  Order deny,allow
  Deny from all
  Allow from all
  </Proxy>
  
  ProxyVia On
  
  CacheRoot "/var/cache/apache2/proxy"
  CacheSize 5
  CacheGcInterval 4
  CacheMaxExpire 24
  CacheLastModifiedFactor 0.1
  CacheDefaultExpire 1
  
  </IfModule>
  
  
  <IfModule !mod_proxy_html.c>
  LoadFile /usr/lib/libxml2.so
  </IfModule>
  
--------------------


-- 
soapee01
------------------------------------------------------------------------
soapee01's Profile: http://forums.slimdevices.com/member.php?userid=4981
View this thread: http://forums.slimdevices.com/showthread.php?t=22943

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

Reply via email to