Questions tagged [squid]

Squid is an open-source HTTP caching proxy server.

Squid is one of the best known open source HTTP proxy servers. Its features include caching of HTTP objects, URL rewriting (via helper apps), authentication, and SSL. It came out of an NSF-funded project in the early 1990s researching caching technologies.

Other similar software packages include NGINX, Apache's mod_proxy, Apache Traffic Server, and Varnish.

Squid's homepage: http://www.squid-cache.org

820 questions
6
votes
5 answers

Is there any way to determine the amount of time a client spends on a web page

Assuming I have an open source web server or proxy I can enhance, let's say apache or squid. Is there a way to determine the time each client spends on a web page? HTTP is of course stateless, so it's not trivial, but maybe someone has an idea on…
Tom Feiner
  • 18,626
  • 17
  • 45
  • 51
6
votes
2 answers

squid3 can't access google.com or bing.com

I've a strange problem with squid3. It is normally working and I can access most web sites through the proxy. However some sites like google.com bing.com just seem to get blocked but not always. Restarting squid3 doesn't seem to help or either…
bradgonesurfing
  • 28,325
  • 12
  • 101
  • 188
5
votes
1 answer

How to log full URL in Squid3 ubuntu?

I'm installed Squid3 proxy into ubuntu server and everything is OK but when i check the log file, Squid logs url but if the url has a (?) his logging only what before ? mark and skip what after it. Exp, if i tried to access this url :…
Youssef Hanna
  • 344
  • 1
  • 5
  • 10
5
votes
5 answers

Any HTTP proxies with explicit, configurable support for request/response buffering and delayed connections?

When dealing with mobile clients it is very common to have multisecond delays during the transmission of HTTP requests. If you are serving pages or services out of a prefork Apache the child processes will be tied up for seconds serving a single…
Carlos Carrasco
  • 722
  • 5
  • 6
5
votes
2 answers

Modify Images With An Http Proxy

April fools is coming up. I'd like to play this prank where we use an http proxy to modify images as they come through the proxy. I've been told that there are scripts/add-ons to ISA/Squid that can do this but I haven't been able to find much on my…
Tyler
  • 3,010
  • 1
  • 28
  • 44
5
votes
0 answers

Squid proxy to change HTTPS header

I am trying to develop a proxy server which will help clients to auto logged into my application without password by setting cookies on that session in proxy. It means if user is using proxy to access that site then he will auto logged into that…
5
votes
1 answer

How to add IP addresses to squid's whitelist

I cannot find how to add IP addresses to squid's whitelist. For example, I'd like to add address 130.125.110.20, or all addresses of network 130.125.110.*, or maybe only a defined port only 130.125.110.20:443. So I'm expecting someting like acl…
fralbo
  • 2,304
  • 2
  • 33
  • 67
5
votes
1 answer

squid proxy error 403 tcp how to fix

hello guys i am installing squid as HTTP proxy for scraping urls from google with a tool i have configured every thing but when i am connecting to squid it is giving tcp 403 error i have ubuntu14.04 and i have not changed its default settings just…
Ajmal khan jamro
  • 49
  • 1
  • 1
  • 5
5
votes
1 answer

Can I use Squid to upgrade client TLS connections?

I'm trying to allow legacy systems (CentOS 5.x) to continue making connections to services which will shortly allow only TLS v1.1 or TLS v1.2 connections (Salesforce, various payment gateways, etc.) I have installed Squid 3.5 on a Centos 7 server in…
Brownoxford
  • 51
  • 1
  • 3
5
votes
1 answer

force mediawiki squid cache to fill up with all pages

For speeding up a MediaWiki site which has content that uses a lot of templates but otherwise pretty much has static content when the templates have done their jobs I'd like to setup a squid server see…
Wolfgang Fahl
  • 12,097
  • 9
  • 75
  • 150
5
votes
1 answer

squid sslbump works with private connection warning

I use squid 3.5 with its sslbump feature for https traffic filtering. I generated my private key and cert files with openssl. However,the browser received the warning message when i open https websites that the certificate was issued by an unknown…
vaj oja
  • 1,055
  • 2
  • 14
  • 36
5
votes
1 answer

HTTPS proxy with support for chunked-encoded requests

I'm developing a simple HTTPS proxy (written in Python) which receives POST/GET requests/responses, applies some transformation and finally forwards the result to the recipient. I need to handle chunked-encoded requests/responses in a "streaming"…
pAkY88
  • 5,916
  • 11
  • 43
  • 54
5
votes
1 answer

Ldap search filter multiple groups - squid

I am testing suid + AD using windows server 2008. I have the following simple structure for now: + Test_Users -----internet_group --------Matthew Vassallo (user) -----normal_group --------Kenneth Grech (user) I would like to make an ldap query that…
Matthew
  • 61
  • 1
  • 2
  • 3
5
votes
5 answers

Why is squid good for REST architectures?

In this article, it is argued that Use Memcache if you frequently fetch random entities from a database, and Squid if you use a REST architecture. Please explain why (with regard to Squid).
Jacques René Mesrine
  • 41,077
  • 24
  • 60
  • 99
5
votes
1 answer

Rewrite nginx host and proxypass to squid

I want to achieve the following: Request Host: http://example.com.proxy.myserver.com Should be rewritten to http://example.com and passed to a squid server via nginx proxypass. server { listen 80; server_name…
Sebastian
  • 1,213
  • 1
  • 10
  • 10
1 2
3
54 55