Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by wrowe:
http://wiki.apache.org/httpd/ReInflating

The comment on the change is:
an example deflating-proxy

------------------------------------------------------------------------------
    127.0.0.1 "GET /deflated/LICENSE.txt HTTP/1.1" 200 10629 (10964) TE:"-" 
CE:"gzip" <-- 514 AE:"gzip,deflate" TE:"-" CE:"-"
    127.0.0.1 "GET /proxy/ucase/LICENSE.txt HTTP/1.1" 200 9600 (9934) TE:"-" 
CE:"gzip" <-- 428 AE:"gzip,deflate" TE:"-" CE:"-"
  
+ 
+   LogFormat "%h \"%r\" %>s %b (%O) TE:\"%{Transfer-Encoding}o\" 
CE:\"%{Content-Encoding}o\" <-- %I AE:\"%{Accept-Encoding}i\" 
TE:\"%{Transfer-Encoding}i\" CE:\"%{Content-Encoding}i\"" compression
+   FilterProvider gzinflate INFLATE resp=Content-Encoding $gzip
+ 
+   <VirtualHost 192.168.0.254:80>
+       ErrorLog logs/proxyerror.log
+       CustomLog logs/proxyaccess.log common
+       CustomLog logs/proxycompression.log compression
+       ProxyRequests On
+       ProxyVia On
+ 
+       <Proxy http:*>
+           FilterChain gzinflate
+           Order deny,allow
+           Deny from all
+           Allow from 127. 10. 192.168.
+       </Proxy>
+   </VirtualHost>
+ 

Reply via email to