Hi, I'd want to install a proxy server but I no need cache, what software do you recommend me?
thanks in advance!
Romeo Ninov wrote:
Sergio Belkin wrote / napísal(a):
Hi, I'd want to install a proxy server but I no need cache, what software do you recommend me?
thanks in advance!
Take a look on some socks server (dante). BTW i think squid can be configured as noncaching proxy
Yes, squid can be configured about any way you like. Other than having to wade through it's huge (but well commented) config file to make changes it is probably the best choice for http and ftp traffic.
Sergio Belkin wrote:
Hi, I'd want to install a proxy server but I no need cache, what software do you recommend me?
thanks in advance!
if you are looking for outward proxy, tinyproxy if you need an inward proxy : nginx
( these are for :80 traffic... )
On Wed, Sep 03, 2008 at 11:53:28AM -0300, Sergio Belkin wrote:
Hi, I'd want to install a proxy server but I no need cache, what software do you recommend me?
Use squid with a small cache and also configure it to cache only small objects.
While you do not need a cache now you might in the future. In the process of seting up clients to use your proxy you might find that the scope of your need will change.
The key advantage of squid is that you can just install it from standard RPMs and the documentation is integrated.
Sergio Belkin wrote:
From: Sergio Belkin sebelk@gmail.com Subject: [CentOS] Proxy with no cache To: "CentOS mailing list" centos@centos.org Date: Wednesday, 3 September, 2008, 2:53 PM Hi, I'd want to install a proxy server but I no need cache, what software do you recommend me?
thanks in advance!
From the Squid FAQ
Q : Can I make Squid proxy only, without caching anything?
A Sure, there are few things you can do.
You can use the cache access list to make Squid never cache any response:
acl all src all cache deny all
http://wiki.squid-cache.org/SquidFaq/ConfiguringSquid#head-c1da1b7113875d4bb...
Thanks, Josh.