summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf35
1 files changed, 35 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf
new file mode 100644
index 000000000..7262e62ca
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf
@@ -0,0 +1,35 @@
+#######################################################################
+##
+## Secure Download Module
+## ------------------------
+##
+## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModSecDownload
+##
+server.modules += ( "mod_secdownload" )
+
+##
+## Document root for the download area.
+## The directory should not be below your normal
+## document root!
+##
+#secdownload.document-root = server_root + "/downloads"
+
+##
+## Secret string that will be used for the checksum calculation.
+##
+#secdownload.secret = ""
+
+##
+## How long is the secret valid?
+##
+## Default: 60 seconds
+##
+#secdownload.timeout = 60
+
+##
+## Prefix for the download area.
+##
+#secdownload.uri-prefix = "/download/"
+
+##
+#######################################################################