2023-12-16 13:59:10 +00:00
|
|
|
server.modules = (
|
|
|
|
"mod_indexfile",
|
|
|
|
"mod_fastcgi"
|
|
|
|
)
|
|
|
|
|
2023-12-16 13:21:21 +00:00
|
|
|
server.document-root = "/srv"
|
|
|
|
server.port = 3000
|
|
|
|
index-file.names = ( "index.html" )
|
|
|
|
|
|
|
|
static-file.exclude-extensions = ( ".php" )
|
|
|
|
fastcgi.server = ( ".php" =>
|
|
|
|
((
|
|
|
|
"socket" => "/run/php-fpm.sock",
|
|
|
|
"broken-scriptfilename" => "enable"
|
|
|
|
))
|
|
|
|
)
|