From 6b496a672cc7b0ffc9174e4a9a8c37353ef26d68 Mon Sep 17 00:00:00 2001 From: Adrian Yorke Date: Wed, 3 Feb 2021 22:57:45 +0200 Subject: [PATCH] Update php5 references to php7.3 --- remote-access/web-server/nginx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/remote-access/web-server/nginx.md b/remote-access/web-server/nginx.md index 6fc01abb3b..582cecaf80 100644 --- a/remote-access/web-server/nginx.md +++ b/remote-access/web-server/nginx.md @@ -84,7 +84,7 @@ Edit by removing the `#` characters on the following lines: ``` location ~ \.php$ { include snippets/fastcgi-php.conf; - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/run/php/php7.3-fpm.sock; } ``` @@ -97,7 +97,7 @@ It should look like this: include snippets/fastcgi-php.conf; # With php-fpm (or other unix sockets): - fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; + fastcgi_pass unix:/run/php/php7.3-fpm.sock; # With php-cgi (or other tcp sockets): # fastcgi_pass 127.0.0.1:9000; }