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:
bcambl 2016-05-14 16:35:40 -06:00
parent 04e375a523
commit 66724826f5
1 changed files with 1 additions and 1 deletions

View File

@ -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"
)
)