Changeset 478
- Timestamp:
- 07/28/2005 10:24:06 AM (3 years ago)
- Files:
-
- 1 modified
-
branches/lighttpd-1.3.x/doc/secdownload.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.3.x/doc/secdownload.txt
r374 r478 28 28 secdownload.document-root = <string> 29 29 secdownload.uri-prefix = <string> (default: /) 30 secdownload.timeout = <short> (default: 60 s)30 secdownload.timeout = <short> (default: 60 seconds) 31 31 32 32 Description … … 110 110 Application 111 111 ----------- 112 :: 112 113 Your application has to generate the correct URLs. The following sample 114 code for PHP should be easily adaptable to any other language: :: 113 115 114 116 <?php … … 133 135 Webserver 134 136 --------- 135 :: 137 138 The server has to configured in the same way. The uri-prefix and secret have 139 to match: :: 136 140 137 141 server.modules = ( ..., "mod_secdownload", ... ) … … 140 144 secdownload.document-root = "/home/www/servers/download-area/" 141 145 secdownload.uri-prefix = "/dl/" 146 secdownload.timeout = 120 142 147

