summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/secdownload.conf
blob: 7262e62caf6c0d49022f48a5c3d6198e40431183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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/"

##
#######################################################################