Re: [squid-users] Squid reverse proxy with cache.

From: Morgan Storey <me_at_morganstorey.com>
Date: Tue, 12 Apr 2011 18:00:50 +1000

On Tue, Apr 12, 2011 at 4:32 PM, Morgan Storey <me_at_morganstorey.com> wrote:
> On Tue, Apr 12, 2011 at 3:56 PM, Amos Jeffries <squid3_at_treenet.co.nz> wrote:
>> SOLUTION:
>>  find the part of IIS or the web scripts which is adding that "private" and
>> turn it off.
>>

Got it all working, for anyone's future reference .Net works via code
in the aspx files, and the app I am playing with umbraco simply needs
the below code in the default.aspx I am led to believe.
<%
Response.ClearHeaders();
Response.Cache.SetExpires(DateTime.Now.AddDays(5)) ;
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.AppendCacheExtension("stale-if-error=36000");
%>
Received on Tue Apr 12 2011 - 08:00:55 MDT

This archive was generated by hypermail 2.2.0 : Tue Apr 12 2011 - 12:00:04 MDT