diff options
Diffstat (limited to 'net-www/mod_authenticache/files/28_mod_authenticache.conf')
-rw-r--r-- | net-www/mod_authenticache/files/28_mod_authenticache.conf | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-www/mod_authenticache/files/28_mod_authenticache.conf b/net-www/mod_authenticache/files/28_mod_authenticache.conf new file mode 100644 index 000000000000..b81a1719965f --- /dev/null +++ b/net-www/mod_authenticache/files/28_mod_authenticache.conf @@ -0,0 +1,31 @@ +<IfDefine AUTHENTICACHE> + <IfModule !mod_authenticache.c> + LoadModule authenticache_module extramodules/mod_authenticache.so + </IfModule> +</IfDefine> + +# NOTE! +# You should login as "test" with the "test" password (without the +# quotes) to use the example below. You also should enable cookies +# in your web browser. + +<IfModule mod_authenticache.c> + +AccessFileName .htaccess +<Directory _REPLACE_ME_> + + Authenticache On + AuthenticacheAuthoritative Off + AuthenticacheTTL 600 + AuthenticacheMaxTTL 3600 + AuthenticacheTicketName AuthentiCache + AuthenticacheTicketPath / + AuthenticacheVerifyIP On + + Options None + AllowOverride All + +</Directory> + +</IfModule> + |