Will do

-----Original Message-----
From: Tamer Embaby [mailto:[EMAIL PROTECTED]
Sent: Monday, December 01, 2008 5:49 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] RE: Clearing cache selectively on Apache + 
mod_cache

Karim,

Please let me know if it works for you.

Tamer

-----Original Message-----
From: Karim Zaki [mailto:[EMAIL PROTECTED]
Sent: Monday, December 01, 2008 3:58 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] RE: Clearing cache selectively on Apache + 
mod_cache

Yeah in this instance there are 2 interfaces on the box. I'll use the internal 
interface, which is not accessible from the Internet anyway...so

<VirtualHost internal-ip>
CacheIgnoreCacheControl Off
</VirtualHost>

Let's see how that works.

-----Original Message-----
From: Eric Covener [mailto:[EMAIL PROTECTED]
Sent: Monday, December 01, 2008 3:50 PM
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] RE: Clearing cache selectively on Apache + 
mod_cache

On Mon, Dec 1, 2008 at 8:42 AM, Tamer Embaby <[EMAIL PROTECTED]> wrote:
> Eric,
>
> So using 2 vhosts would be:
>
> # External vhost
> <VirtualHost *:80>
>        ServerName www.example.com
>        CacheRoot /path/to/cache
>        Cache disk /url
>        CacheIgnoreCacheControl On
>        CacheMaxExpire 86400
>        CacheDefaultExpire 86400
> </VirtualHost>
>
> # Internal vhost
> <VirtualHost *:80>
>        ServerName cache-internal.example.com
>        CacheRoot /path/to/cache
>        Cache disk /url
>        CacheMaxExpire 86400
>        CacheDefaultExpire 86400
> </VirtualHost>
>
> And then when requiring a "push" when the content changes we access
> the internal http://cache-internal.example.com/url/path/to/invalidate
> with "Cache-Control" HTTP header set to "max-age=0,must-revalidate"?

Yes, with the caveat some might prefer to have it only respond on a
different interface (even though I said name vhost before) or maybe
even require authentication of some kind.

--
Eric Covener
[EMAIL PROTECTED]

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to