瀏覽代碼

Update dolibarr

/var/run/php/php7.0-fpm.sock
UT from dolibit 4 年之前
父節點
當前提交
5f15c339c7
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      dev/setup/nginx/dolibarr

+ 3 - 3
dev/setup/nginx/dolibarr

@@ -5,13 +5,13 @@ server {
 
 
         root /path/to/your/htdocs;
         root /path/to/your/htdocs;
 
 
-        # Optionnal
+        # Optional
         error_log /path/to/your/log/directory/nginx.error.log;
         error_log /path/to/your/log/directory/nginx.error.log;
 	    access_log /path/to/your/log/directory/nginx.access.log;
 	    access_log /path/to/your/log/directory/nginx.access.log;
 
 
         index index.php index.html index.htm;
         index index.php index.html index.htm;
 
 
-        # Optionnal
+        # Optional
         server_name your-fqdn.tld;
         server_name your-fqdn.tld;
 
 
         location / {
         location / {
@@ -23,6 +23,6 @@ server {
                 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                 fastcgi_read_timeout 600;
                 fastcgi_read_timeout 600;
                 include fastcgi_params;
                 include fastcgi_params;
-                fastcgi_pass unix:/var/run/php5-fpm.sock;
+                fastcgi_pass unix:/var/run/php5-fpm.sock;  //  /var/run/php/php7.0-fpm.sock
         }
         }
 }
 }