20 lines
No EOL
428 B
Text
20 lines
No EOL
428 B
Text
server.modules = (
|
|
"mod_indexfile",
|
|
"mod_fastcgi",
|
|
"mod_access"
|
|
)
|
|
|
|
server.document-root = "/srv/www"
|
|
server.port = 3000
|
|
index-file.names = ( "index.html", "index.php" )
|
|
|
|
static-file.exclude-extensions = ( ".php" )
|
|
fastcgi.server = ( ".php" =>
|
|
((
|
|
"socket" => "/run_local/php-fpm.sock",
|
|
"broken-scriptfilename" => "enable"
|
|
))
|
|
)
|
|
|
|
include_shell "/usr/share/lighttpd/create-mime.conf.pl"
|
|
include "/srv/lighttpd/*.conf" |