diff options
Diffstat (limited to 'abs/core/lighttpd/lighttpd.conf')
-rw-r--r-- | abs/core/lighttpd/lighttpd.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/abs/core/lighttpd/lighttpd.conf b/abs/core/lighttpd/lighttpd.conf index 4d84dba..9831c5d 100644 --- a/abs/core/lighttpd/lighttpd.conf +++ b/abs/core/lighttpd/lighttpd.conf @@ -42,10 +42,14 @@ server.document-root = "/data/srv/httpd/htdocs" #### accesslog module #accesslog.filename = "/var/log/lighttpd/access.log" -#send errors to syslog +##send errors to syslog server.errorlog-use-syslog = "enable" $HTTP["url"] !~ "\.(jpe?g|png|gif|css)" { accesslog.use-syslog = "enable" } +## File uploads +# Make sure this folder exists and is writable to server.username +# Add /data/storage/disk0/media/tmp/ for large file downloads in MythWeb +server.upload-dirs = ( "/var/tmp/", "/data/storage/disk0/media/tmp/" ) # files to check for if .../ is requested index-file.names = ( "index.php", "index.html", |