Parcourir la source

Remove useless references to php7.0.

pitchum il y a 4 ans
Parent
commit
7879b67c2c
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      conf/nginx.conf
  2. 1 1
      conf/php-fpm.conf

+ 1 - 1
conf/nginx.conf

@@ -35,7 +35,7 @@ location __PATH__/ {
 
   location ~ [^/]\.php(/|$) {
     fastcgi_split_path_info ^(.+?\.php)(/.*)$;
-    fastcgi_pass unix:/var/run/php/php7.0-fpm-__NAME__.sock;
+    fastcgi_pass unix:/run/php/fpm-__NAME__.sock;
     fastcgi_index index.php;
     include fastcgi_params;
     fastcgi_read_timeout 600;

+ 1 - 1
conf/php-fpm.conf

@@ -28,7 +28,7 @@
 ;                            specific port;
 ;   '/path/to/unix/socket' - to listen on a unix socket.
 ; Note: This value is mandatory.
-listen = /var/run/php/php7.0-fpm-__NAMETOCHANGE__.sock
+listen = /run/php/fpm-__NAMETOCHANGE__.sock
 
 ; Set permissions for unix socket, if one is used. In Linux, read/write
 ; permissions must be set in order to allow connections from a web server. Many