From 66724826f5800169513d315922a92833fdb5e03d Mon Sep 17 00:00:00 2001 From: bcambl Date: Sat, 14 May 2016 16:35:40 -0600 Subject: [PATCH] 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 --- advanced/lighttpd.conf.fedora | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/lighttpd.conf.fedora b/advanced/lighttpd.conf.fedora index 7d38f95b..30784b1a 100644 --- a/advanced/lighttpd.conf.fedora +++ b/advanced/lighttpd.conf.fedora @@ -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" ) )