lighttpd: add include directive
This commit is contained in:
parent
2a48e9630e
commit
ed28fcb814
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
server.modules = (
|
server.modules = (
|
||||||
"mod_indexfile",
|
"mod_indexfile",
|
||||||
"mod_fastcgi"
|
"mod_fastcgi",
|
||||||
|
"mod_access"
|
||||||
)
|
)
|
||||||
|
|
||||||
server.document-root = "/srv/www"
|
server.document-root = "/srv/www"
|
||||||
|
@ -13,4 +14,6 @@ fastcgi.server = ( ".php" =>
|
||||||
"socket" => "/run_local/php-fpm.sock",
|
"socket" => "/run_local/php-fpm.sock",
|
||||||
"broken-scriptfilename" => "enable"
|
"broken-scriptfilename" => "enable"
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
include "/srv/lighttpd/*.conf";
|
Loading…
Reference in a new issue