diff options
author | Olaf van der Spek <olafvdspek@gmail.com> | 2010-06-02 15:56:04 +0000 |
---|---|---|
committer | Olaf van der Spek <olafvdspek@gmail.com> | 2010-06-02 15:56:04 +0000 |
commit | 72505df9282fd508281a13880a30fd192edc26f4 (patch) | |
tree | 5a6a0719248fe1eb3c548329094a4d123ed5491a | |
parent | 67967a9778c7e3237b39782fc62acb826cddbad0 (diff) | |
download | lighttpd-72505df9282fd508281a13880a30fd192edc26f4.tar.gz |
Move expire conf to it's own file.
-rw-r--r-- | debian/conf-available/10-expire.conf | 3 | ||||
-rw-r--r-- | debian/lighttpd.conf | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/debian/conf-available/10-expire.conf b/debian/conf-available/10-expire.conf new file mode 100644 index 0000000..634236a --- /dev/null +++ b/debian/conf-available/10-expire.conf @@ -0,0 +1,3 @@ +# http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModExpire + +server.modules += ( "mod_expire" ) diff --git a/debian/lighttpd.conf b/debian/lighttpd.conf index d614c47..ec14cf9 100644 --- a/debian/lighttpd.conf +++ b/debian/lighttpd.conf @@ -10,7 +10,6 @@ server.modules = ( # "mod_rewrite", # "mod_redirect", # "mod_usertrack", -# "mod_expire", # "mod_flv_streaming", # "mod_evasive" ) @@ -87,9 +86,6 @@ compress.filetype = ("text/plain", "text/html", "application/x-javascr # url.rewrite = ( "^/$" => "/server-status" ) # url.redirect = ( "^/wishlist/(.+)" => "http://www.123.org/$1" ) -#### expire module -# expire.url = ( "/buggy/" => "access 2 hours", "/asdhas/" => "access plus 1 seconds 2 minutes") - #### external configuration files ## mimetype mapping include_shell "/usr/share/lighttpd/create-mime.assign.pl" |