summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_auth_token/files/75_mod_auth_token.conf')
-rw-r--r--www-apache/mod_auth_token/files/75_mod_auth_token.conf26
1 files changed, 0 insertions, 26 deletions
diff --git a/www-apache/mod_auth_token/files/75_mod_auth_token.conf b/www-apache/mod_auth_token/files/75_mod_auth_token.conf
deleted file mode 100644
index 3962fc66a708..000000000000
--- a/www-apache/mod_auth_token/files/75_mod_auth_token.conf
+++ /dev/null
@@ -1,26 +0,0 @@
-<IfDefine AUTH_TOKEN>
-
- LoadModule auth_token_module modules/mod_auth_token.so
-
- # The token is an hex-encoded MD5 hash of the secret password, relative file
- # path and the timestamp. It is encoded onto the URI as:
- # <uri-prefix><token>/<timestamp-in-hex><rel-path
- # where the token is generated as
- # md5("secret" + "/path/to/file.txt" + dechex(time_now()))
- # To add the IP of client into the in the md5 hash, enable AuthTokenLimitByIp.
-
- #<Location /protected/>
- #AuthTokenSecret "secret"
- #AuthTokenPrefix /protected/
- #AuthTokenTimeout 60
- #AuthTokenLimitByIp off
- #</Location>
-
- # Example:
- # /protected/dee0ed6174a894113d5e8f6c98f0e92b/43eaf9c5/path/to/file.txt
- # maps to
- # /protected/path/to/file.txt
-
-</IfDefine>
-
-# vim: ts=4 filetype=apache \ No newline at end of file