[squid-users] objects after expire time

2008-07-02 Thread Ken W.
Hello, My original server includes the expire headers in its response. When an object cached on squid get expired, for the succedent requests to this object, does squid revalidate it to original server every time? If so, does this bring down squid's performance? Thanks for any helps.

[squid-users] FTP supports

2008-07-01 Thread Ken W.
Hello, Does squid support for FTP connection? Will squid cache the FTP objects as HTTP's? Is there a config sample for FTP? Thanks in advance.

Re: [squid-users] iptables syntax

2008-06-16 Thread Ken W.
Thanks. I have two 1000M cards. Does it support all web applications like videos, webIM etc? 2008/6/16 Indunil Jayasooriya [EMAIL PROTECTED]: I will run Squid on Linux OS, with transparent mode. Should I use iptables to do the http intercept? what's the iptables syntax? please help, thank you.

[squid-users] iptables syntax

2008-06-15 Thread Ken W.
Hello, Now I have the plan to config a squid box for my office for web browsering. I will run Squid on Linux OS, with transparent mode. Should I use iptables to do the http intercept? what's the iptables syntax? please help, thank you. Regards, Ken W.

Re: [squid-users] How to keep session?

2008-06-14 Thread Ken W.
. Thank you. 2008/6/13 Ken W. [EMAIL PROTECTED]: Thanks Henrik. Can source-hash algorithm in cache_peer handle this case? since source-hash is based on users' IP for redirection. Thanks again. 2008/6/12 Henrik Nordstrom [EMAIL PROTECTED]: On tor, 2008-06-12 at 18:13 +0800, Ken W. wrote: I

[squid-users] How to keep session?

2008-06-12 Thread Ken W.
Hello, I have two original servers behind Squid boxes. How to keep requests from the same client always going to the same original server? Because we have to use session for web applications, so assigning requests to original servers by random is not right. Thanks. --Ken

Re: [squid-users] How to keep session?

2008-06-12 Thread Ken W.
Thanks Henrik. Can source-hash algorithm in cache_peer handle this case? since source-hash is based on users' IP for redirection. Thanks again. 2008/6/12 Henrik Nordstrom [EMAIL PROTECTED]: On tor, 2008-06-12 at 18:13 +0800, Ken W. wrote: I have two original servers behind Squid boxes. How

[squid-users] multi original servers

2008-06-09 Thread Ken W.
Hello, Under squid's reverse proxy mode, if there are more than one original server, how to config it? cache_peer InsideIP1 parent 80 0 no-query originserver name=Myserver round-robin cache_peer InsideIP2 parent 80 0 no-query originserver name=Myserver round-robin Is the config above right?

Re: [squid-users] multi original servers

2008-06-09 Thread Ken W.
2008/6/10 Ben Hollingsworth [EMAIL PROTECTED]: In my testing, I found that the names had to be slightly different. For instance: cache_peer INTERNALIP1 parent 80 0 no-query originserver login=PASS name=INTERNALNAME1-peer sourcehash cache_peer INTERNALIP2 parent 80 0 no-query originserver

[squid-users] Request failure ratio

2008-06-08 Thread Ken W.
Hello, When running squidclient mgr:info, there is an item called Request failure ratio. What does this mean? Does it include the requests which were rejected by ACL rules? Thanks.

Re: [squid-users] https questions

2008-06-07 Thread Ken W.
2008/6/7 Henrik Nordstrom [EMAIL PROTECTED]: Thanks Henrik. Under my setting, can squid work correctly for this flow? clients --https-- squid --http-- webserver webserver --http-- squid --https-- clients Again, yes, provided your web server application has support for being used

Re: [squid-users] https questions

2008-06-07 Thread Ken W.
' '--with-filedescriptors=51200' '--enable-ssl' I'm running it under redhat linux AS5. Please help, thanks. --Ken 2008/6/7 Henrik Nordstrom [EMAIL PROTECTED]: On lör, 2008-06-07 at 09:58 +0800, Ken W. wrote: 2008/6/7 Henrik Nordstrom [EMAIL PROTECTED]: But you are quite likely to run

[squid-users] https questions

2008-06-06 Thread Ken W.
( I'm sorry that this was my third message for the same question to the list. b/c the before two messages sent from yahoo got lost...) Hello members, I want to set squid, which accepts https from clients, then forward the request to original server with http protocal. This is the setting I

[squid-users] https-http setting

2008-06-06 Thread Ken W.
Hello members, I want to set squid, which accepts https from clients, then forward the request to original server with http protocal. This is the setting I considered: https_port 443 accel vhost cert=/squid/etc/xxx.crt key=/squid/etc/xxx.key protocol=http cache_peer 10.0.0.1 parent 80 0

[squid-users] https questions

2008-06-06 Thread Ken W.
Hello members, I want to set squid, which accepts https from clients, then forward the request to original server with http protocal. This is the setting I considered: https_port 443 accel vhost cert=/squid/etc/xxx.crt key=/squid/etc/xxx.key protocol=http cache_peer 10.0.0.1 parent 80 0

Re: [squid-users] https questions

2008-06-06 Thread Ken W.
2008/6/7 Henrik Nordstrom [EMAIL PROTECTED]: But you are quite likely to run into issues with the server sending out http:// URLs in it's responses unless the server has support for running behind an SSL frontend. See for example the front-end-https cache_peer option. Thanks Henrik. Under