server.modules = ( "mod_rewrite", "mod_redirect", "mod_access", "mod_fastcgi", "mod_compress", "mod_accesslog") server.document-root = "/var/www" server.bind = "0.0.0.0" server.port = 80 server.pid-file = "/tmp/main_lighttpd.pid" server.tag = "lighttpd" #accesslog.filename = "/var/log/lighttpd.access.log" server.errorlog = "/var/log/lighttpd.error.log" server.indexfiles = ("index.php","index.html","index.htm","default.htm") #url.access-deny = ("~", ".inc") ##Uncomment this for your main example.net domain if using Ruby/Rails #$HTTP["host"] =~ "(^|\.)example.net" { #server.document-root = "/var/www/example/public/" #server.error-handler-404 = "/dispatch.fcgi" #server.indexfiles = ("dispatch.fcgi") #accesslog.filename = "/var/log/puddle.access.log" # fastcgi.server = (".fcgi" => # ("localhost" => # ("socket" => "/tmp/example.socket", # "min-procs" => 2, # "max-procs" => 2, # "bin-path" => "/var/www/example/public/dispatch.fcgi", # "bin-environment" => ("RAILS_ENV" => "production") # ))) #} ##Use this for your php access to your mail database if required $HTTP["host"] == "php.example.net" { server.document-root = "/var/www/phpmyadmin" server.indexfiles = ( "index.php", "index.html") fastcgi.server = (".php" => ("localhost" => ("socket" => "/tmp/phpadmin.socket", "bin-path" => "/usr/bin/php5-cgi -c /etc/php5/cgi/php.ini", "bin-environment" => ( "PHP_FCGI_CHILDREN" => "1", "PHP_FCGI_MAX_REQUESTS" => "250" ) ))) } ## Use this for your squirrelmail access. $HTTP["host"] == "mail.example.net" { server.document-root = "/var/www/squirrelmail" server.indexfiles = ( "index.php", "index.html") fastcgi.server = (".php" => ("localhost" => ("socket" => "/tmp/squirrelmail.socket", "bin-path" => "/usr/bin/php5-cgi -c /etc/php5/cgi/php.ini", "bin-environment" => ( "PHP_FCGI_CHILDREN" => "1", "PHP_FCGI_MAX_REQUESTS" => "250" ) ))) } 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" => "audio/x-wav", ".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", ".rjs" => "text/javascript", ".asc" => "text/plain", ".c" => "text/plain", ".conf" => "text/plain", ".text" => "text/plain", ".txt" => "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" )