server.modules = ( "mod_access", "mod_cgi", "mod_redirect", "mod_accesslog" ) server.document-root = "/var/www/mail" #server.errorlog = "|/usr/local/sbin/httplog -z /var/www/log/error.log.%Y%m%d%H" server.errorlog = "/var/www/log/error.log" index-file.names = ( "index.html", "index.sh", "Mailbox" ) server.event-handler = "freebsd-kqueue" # needed on OS X mimetype.assign = ( ".pdf" => "application/pdf", ".sig" => "application/pgp-signature", ".spl" => "application/futuresplash", ".class" => "application/octet-stream", ".ps" => "application/postscript", ".torrent" => "application/x-bittorrent", ".dvi" => "application/x-dvi", ".gz" => "application/x-gzip", ".pac" => "application/x-ns-proxy-autoconfig", ".swf" => "application/x-shockwave-flash", ".tar.gz" => "application/x-tgz", ".tgz" => "application/x-tgz", ".tar" => "application/x-tar", ".zip" => "application/zip", ".mp3" => "audio/mpeg", ".m3u" => "audio/x-mpegurl", ".wma" => "audio/x-ms-wma", ".wax" => "audio/x-ms-wax", ".ogg" => "application/ogg", ".wav" => "audio/x-wav", ".gif" => "image/gif", ".jpg" => "image/jpeg", ".jpeg" => "image/jpeg", ".png" => "image/png", ".xbm" => "image/x-xbitmap", ".xpm" => "image/x-xpixmap", ".xwd" => "image/x-xwindowdump", ".css" => "text/css", ".html" => "text/html", ".htm" => "text/html", ".js" => "text/javascript", ".asc" => "text/plain", ".c" => "text/plain", ".cpp" => "text/plain", ".log" => "text/plain", ".conf" => "text/plain", ".text" => "text/plain", ".txt" => "text/plain", "Mailbox" => "text/plain", "crontab" => "text/plain", ".sh" => "text/plain", ".dtd" => "text/xml", ".xml" => "text/xml", ".mpeg" => "video/mpeg", ".mpg" => "video/mpeg", ".mov" => "video/quicktime", ".qt" => "video/quicktime", ".avi" => "video/x-msvideo", ".asf" => "video/x-ms-asf", ".asx" => "video/x-ms-asf", ".wmv" => "video/x-ms-wmv", ".bz2" => "application/x-bzip", ".tbz" => "application/x-bzip-compressed-tar", ".tar.bz2" => "application/x-bzip-compressed-tar" ) accesslog.format = "%U-%b %>s %l %u %t \"%r\" %b %>s \"-\" \"-\" \"%{X-LIGHTTPD-SID}o\"" accesslog.filename = "|/usr/local/sbin/httplog -b 1024 -s /var/www/log/access.log /var/www/log/access.log.%Y%m%d%H%M" url.access-deny = ( "~", ".inc" ) $HTTP["url"] =~ "\.pdf$" { server.range-requests = "disable" } #static-file.exclude-extensions = ( ".sh" ) server.pid-file = "/var/run/lighttpd.pid" dir-listing.activate = "disable" server.username = "www" server.groupname = "www" $HTTP["url"] !~ "/doc/" { cgi.assign = ( ".sh" => "/bin/sh") } $SERVER["socket"] == ":80" { $HTTP["host"] =~ "(.*)" { url.redirect = ( "^/(.*)" => "https://%1/$1" ) } } $SERVER["socket"] == "194.150.168.193:442" { ssl.engine = "enable" ssl.pemfile = "/var/www/server.pem" } $SERVER["socket"] == "194.150.168.193:443" { ssl.engine = "enable" ssl.pemfile = "/var/www/server.pem" } $SERVER["socket"] == "194.150.168.193:444" { ssl.engine = "enable" ssl.pemfile = "/var/www/server.pem" }