From 9f51692f26fd779f172de60e22ca871d69286fba Mon Sep 17 00:00:00 2001 From: Diogo Cordeiro Date: Wed, 5 Jun 2019 22:59:54 +0100 Subject: [PATCH] [NGINX conf] Move /var/run to /run As seen in https://lists.fedoraproject.org/pipermail/devel/2011-March/150031.html Thanks to XRevan86 for reporting this :) --- .../SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample b/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample index 496d42029b..1d1bb161ab 100644 --- a/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample +++ b/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample @@ -36,7 +36,7 @@ server { include fastcgi_params; include snippets/fastcgi-php.conf; - fastcgi_pass unix:/var/run/php/php-fpm.sock; + fastcgi_pass unix:/run/php/php-fpm.sock; fastcgi_param SCRIPT_FILENAME $request_filename; }