Inquiry regarding squid-cache proxy server.
In apache server environment, it supports rewrite by using "mod_rewrite"
module.
Below is a configure that if there is "GET method" it will process
or send to
"http://localhost:8080" during "REQUEST_MEHOD" calling.
httpd.conf
-------------------------------------------------------------
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !^(GET)$
RewriteRule .* - [L]
RewriteRule .* http://localhost:8080%{REQUEST_URI} [P,QSA,L]
RewriteRule .* - [L]
AllowEncodedSlashes On
-------------------------------------------------------------
Does squid-cache support smilliar feature like "rewrite"?
I can only see below category in settings.
squid.conf
----------------------------------------------------------------
acl POST method POST
no_cache deny POST
----------------------------------------------------------------
Is it possible to process "POST method" to other port during
"REQUEST_METHOD" calling?
-- View this message in context: http://www.nabble.com/hello%21-Inquiry-regarding-squid-cache-proxy-server.-tp24420103p24420103.html Sent from the Squid - Users mailing list archive at Nabble.com.Received on Fri Jul 10 2009 - 00:44:40 MDT
This archive was generated by hypermail 2.2.0 : Fri Jul 10 2009 - 12:00:02 MDT