mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 06:48:07 +00:00
Adjusting fastcgi.server
config (#5103)
This commit is contained in:
commit
f27f796b34
@ -12,9 +12,14 @@
|
|||||||
# ANY CHANGES MADE TO THIS FILE AFTER INSTALL WILL BE LOST ON THE NEXT UPDATE #
|
# ANY CHANGES MADE TO THIS FILE AFTER INSTALL WILL BE LOST ON THE NEXT UPDATE #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
server.errorlog := "/var/log/lighttpd/error-pihole.log"
|
||||||
|
|
||||||
$HTTP["url"] =~ "^/admin/" {
|
$HTTP["url"] =~ "^/admin/" {
|
||||||
server.document-root = "/var/www/html"
|
server.document-root = "/var/www/html"
|
||||||
server.stream-response-body = 1
|
server.stream-response-body = 1
|
||||||
|
accesslog.filename = "/var/log/lighttpd/access-pihole.log"
|
||||||
|
accesslog.format = "%{%s}t|%h|%V|%r|%s|%b"
|
||||||
|
|
||||||
fastcgi.server = (
|
fastcgi.server = (
|
||||||
".php" => (
|
".php" => (
|
||||||
"localhost" => (
|
"localhost" => (
|
||||||
@ -22,6 +27,14 @@ $HTTP["url"] =~ "^/admin/" {
|
|||||||
"bin-path" => "/usr/bin/php-cgi",
|
"bin-path" => "/usr/bin/php-cgi",
|
||||||
"min-procs" => 0,
|
"min-procs" => 0,
|
||||||
"max-procs" => 1,
|
"max-procs" => 1,
|
||||||
|
"bin-environment" => (
|
||||||
|
"PHP_FCGI_CHILDREN" => "4",
|
||||||
|
"PHP_FCGI_MAX_REQUESTS" => "10000",
|
||||||
|
),
|
||||||
|
"bin-copy-environment" => (
|
||||||
|
"PATH", "SHELL", "USER"
|
||||||
|
),
|
||||||
|
"broken-scriptfilename" => "enable",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user