moved php-fastcgi.socket to /tmp on Fedora
fastcgi is spawned by lighttpd (lighttpd user). /var/run is owned by root, so we will put the socket in /tmp
This commit is contained in:
parent
04e375a523
commit
66724826f5
|
@ -56,7 +56,7 @@ mimetype.assign = ( ".png" => "image/png",
|
|||
fastcgi.server = ( ".php" =>
|
||||
( "localhost" =>
|
||||
(
|
||||
"socket" => "/var/run/lighttpd/php-fastcgi.socket",
|
||||
"socket" => "/tmp/php-fastcgi.socket",
|
||||
"bin-path" => "/usr/bin/php-cgi"
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue