[squid-users] Caching for maps.ayna.com

2010-01-04 Thread Roland Roland
hello all, i'm checking store.log to see hits concerning maps.ayna.com and nothing is being cached from the map itself.. any idea what might be the prob ? i've opened a session and tail access.log where everything is being missed times and times again...

Re: [squid-users] solaris 10 process size problem

2010-01-04 Thread Mario Garcia Ortiz
Hello here are the compile option used to build squid on the solaris system: there are no compilation error or warnings : $ ./configure CFLAGS=-DNUMTHREADS=60 --prefix=/usr/local/squid --enable-snmp --with-maxfd=32768 --enable-removal-policies --enable-useragent-log --enable-storeio=diskd,null

Re: [squid-users] Expires Header

2010-01-04 Thread Dusten Splan
Thanks for the response Chris but I don't think that is was I'm looking for. What I would like to do is overwrite the expires header to something far in the future. I am also running squid 3.0. Thanks Dusten On Thu, Dec 31, 2009 at 15:30, Chris Robertson crobert...@gci.net wrote: Dusten

[squid-users] Access.log in Transparent Mode‏

2010-01-04 Thread Pedro
Hi all, I've configured a Debian Server 2.6.26-2-686 with Squid Server v2.7 in transparent mode and works perfect, but I need that the 'transparents' request records in access.log file. When I configure the proxy server in the browser I see how the file grows, and I can see a tail -f too. But

Re: [squid-users] Caching for maps.ayna.com

2010-01-04 Thread Serge Fonville
Hi, i'm checking store.log to see hits concerning maps.ayna.com and nothing is being cached from the map itself.. any idea what might be the prob ? i've opened a session and tail access.log where everything is being missed times and times again... The headers contain Cache-Control:

Re: [squid-users] Squid 3.1.0.13 Speed Test - Upload breaks?

2010-01-04 Thread jay60103
I'm using Version 3.1.0.6 and speakeasy.net doesn't work for me either. Download test okay, but when it starts the upload part it fails with Upload test returned an error while trying to read the upload file. http://bigcartel.com fails also. Possibly related? Adrian Chadd-3 wrote: The

Re: [squid-users] Squid LDAP Auth and ACL Integration

2010-01-04 Thread Chris Robertson
ml ml wrote: Hi, thanks for the reply. However, i cant get the proof-of-concept working on the command line: echo mo | squid_ldap_group -b dc=my-domain,dc=com -f cn=mo -F cn=mo -h localhost -D cn=Manager,dc=my-domain,dc=com -w secret it always returns ERR. So, user with common name of

[squid-users] Forward Cache not working

2010-01-04 Thread Mike Makowski
Hello all, I'm new to squid. Currently have squid3 installed on a 64-bit ubuntu box. Fresh install with default YUM settings. I am trying to get the forward proxy cache to work for one very specific application that is running on multiple servers on my LAN. Instead of each machine pulling a

Re: [squid-users] Expires Header

2010-01-04 Thread Chris Robertson
Dusten Splan wrote: Thanks for the response Chris but I don't think that is was I'm looking for. What I would like to do is overwrite the expires header to something far in the future. I am also running squid 3.0. Thanks Dusten Ah. For 3.0 you will want to use reply_header_access

Re: [squid-users] Forward Cache not working

2010-01-04 Thread Guido Marino Lorenzutti
logs from the hits to the squid? config files? Mike Makowski mi...@btslink.com escribió: Hello all, I'm new to squid. Currently have squid3 installed on a 64-bit ubuntu box. Fresh install with default YUM settings. I am trying to get the forward proxy cache to work for one very specific

Re: [squid-users] Forward Cache not working

2010-01-04 Thread Chris Robertson
Mike Makowski wrote: Hello all, I'm new to squid. Currently have squid3 installed on a 64-bit ubuntu box. Fresh install with default YUM settings. I am trying to get the forward proxy cache to work for one very specific application that is running on multiple servers on my LAN. Instead of

RE: [squid-users] Forward Cache not working

2010-01-04 Thread Mike Makowski
Here is my basic config. Using defaults for everything else. acl localnet src 172.16.0.0/12 http_access allow local_net maximum_object_size 25 MB Here is a log entry showing one connection from a LAN user through the proxy. I am guessing that the TCP_MISS is significant. Perhaps the original

Re: [squid-users] Forward Cache not working

2010-01-04 Thread Chris Robertson
Mike Makowski wrote: Here is my basic config. Using defaults for everything else. acl localnet src 172.16.0.0/12 http_access allow local_net maximum_object_size 25 MB Here is a log entry showing one connection from a LAN user through the proxy. I am guessing that the TCP_MISS is significant.

Re: [squid-users] Squid LDAP Auth and ACL Integration

2010-01-04 Thread Jose Ildefonso Camargo Tolosa
Hi! On Sat, Jan 2, 2010 at 1:49 PM, ml ml mliebher...@googlemail.com wrote: Hi, thanks for the reply. However, i cant get the proof-of-concept working on the command line: echo mo | squid_ldap_group  -b dc=my-domain,dc=com  -f cn=mo -F cn=mo -h localhost -D cn=Manager,dc=my-domain,dc=com  

[squid-users] Squid url_rewrite and cookie

2010-01-04 Thread Rajesh Nair
Hi, I have a squid deployed with a url_rewrite_program set to a perl script which rewrites certain requests. This is all working fine . I now want to be able to set a cookie along with the 302 response and I am not able to figure out how. Reading the docs , it looks like it is not possible to

[squid-users] show orgin client's IP address.

2010-01-04 Thread Calvin Park
Hello Squid users~ My system configuration below. | Apache ( Origin ) |--- | Squid ( Transparent Proxy or Proxy ) | --- | Client | I want to see client's IP address at Apache side. I knew one solution using by SQUID : follow_x_forwarded_for , APACHE : %{X-Forwarded-For}i\ I want to

RE: [squid-users] Forward Cache not working

2010-01-04 Thread Mike Makowski
I have attached is a screenshot of WGET header output with the -S option. I see nothing about private in the headers so I'm assuming this content should be getting cached. Yet, each time I run wget and then view the Squid access log it shows TCP_MISS on every attempt. I'll try the Ignore

Re: [squid-users] Squid url_rewrite and cookie

2010-01-04 Thread Matt W. Benjamin
Hi, Yes, you cannot (could not) per se. However, you can rewrite to a cooperating HTTP service which sets a cookie. And, if you had adjusted Squid so as to pass cookie data to url_rewriter programs, you could also inspect the cookie in it on future requests. Matt - Rajesh Nair