From: Diogo Cordeiro Date: Wed, 5 Jun 2019 21:59:54 +0000 (+0100) Subject: [NGINX conf] Move /var/run to /run X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9f51692f26fd779f172de60e22ca871d69286fba;p=quix0rs-gnu-social.git [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 :) --- 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; }