Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Vincent Veyron
On Mon, 27 Jul 2015 10:30:11 -0700 Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / > ... > > but I can find nothing that explains what the value "/" represents. > Is it a URI? Later in the sample configs we see URIs to which > protection a

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Steve van der Burg
It is the path part of a URL. The HTML Cookie specification defines it, and this is AuthCookie's way of letting you set it. If the request domain + path doesn't match those set in the cookie, then the browser won't send the cookie to the server. When using cookies for non-auth purposes, there

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Jim Garrison
On 7/27/2015 10:30 AM, Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / > ... > That should of course be PerlSetVar WhatEverPath / -- Jim Garrison (j...@acm.org) PGP Keys at http://www.jhmg.net RSA 0x04B73B7F DH 0x70738D88

Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Jim Garrison
Every example for Apache2::AuthCookie shows ... WhatEverPath / ... but I can find nothing that explains what the value "/" represents. Is it a URI? Later in the sample configs we see URIs to which protection applies are defined by or tags, How does the value of this parameter affe