Skip to content

Instantly share code, notes, and snippets.

@AnnoyingTechnology
Created February 23, 2015 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnnoyingTechnology/a51e47ed2456a22e2808 to your computer and use it in GitHub Desktop.
Save AnnoyingTechnology/a51e47ed2456a22e2808 to your computer and use it in GitHub Desktop.
lighttpd.conf development for Phalcon & Polyfony
server.modules = ( "mod_cgi", "mod_fastcgi", "mod_accesslog", "mod_rewrite" )
server.port = 80
server.document-root = "/opt/local/www/"
server.errorlog = "/opt/local/var/log/lighttpd.error.log"
server.follow-symlink = "enable"
dir-listing.hide-dotfiles = "enable"
dir-listing.activate = "enable"
index-file.names = ( "index.html", "index.php" )
static-file.exclude-extensions = ( ".php" )
#cgi.assign = ( ".php" => "/opt/local/bin/php-cgi56" )
$HTTP["host"] == "phalcon" {
server.document-root = "/opt/local/www/phalcon/Public/"
# url.rewrite-once = ( "^(?!/Assets/)(/.*)$" => "/?url=$2" )
}
$HTTP["host"] == "polyfony" {
server.document-root = "/opt/local/www/polyfony/Public/"
url.rewrite-once = ( "^(?!/assets/).*" => "/?" )
}
fastcgi.server += ( ".php" =>
((
"host" => "127.0.0.1",
"port" => "9000"
))
)
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",
".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"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment