----- Original Message ----- From: "Junix Gaspar" <[EMAIL PROTECTED]> To: <[email protected]> Sent: Tuesday, July 05, 2005 5:03 PM Subject: [plug] how do you create cacheless Squid
> Bonjour PLUG, salut junix :-> >Need to create a squid without a cache. It will act as a second squid >to handle authentication (login, mac-address, etc) only. and for that >I dont want it to cache objects. use the no_cache directive... acl all src 0.0.0.0/0 no_cache deny all the above will not cache any objects... to avoid creating a cache directory... cache_dir null </any/path/and/must/be/exist> you must enable this null storage module during "configure" stage.. ./configure --enable-storeio=ufs,null fooler. _________________________________________________ Philippine Linux Users' Group (PLUG) Mailing List [email protected] (#PLUG @ irc.free.net.ph) Read the Guidelines: http://linux.org.ph/lists Searchable Archives: http://archives.free.net.ph

