ฉันเพียงแค่มีข้อผิดพลาดนี้อีกครั้งในวันนี้เป็นฉันปรับปรุงเครื่องของฉัน (กับการปรับปรุงสำหรับ PHP) ที่ทำงานUbuntu 14.04 ไฟล์กำหนดค่าการกระจาย/etc/php5/fpm/pool.d/www.conf
นั้นใช้ได้และไม่ต้องการการเปลี่ยนแปลงใด ๆ ในขณะนี้
ฉันพบข้อผิดพลาดต่อไปนี้:
dmesg | grep php
[...]
[ 4996.801789] traps: php5-fpm[23231] general protection ip:6c60d1 sp:7fff3f8c68f0 error:0 in php5-fpm[400000+800000]
[ 6788.335355] traps: php5-fpm[9069] general protection ip:6c5d81 sp:7fff98dd9a00 error:0 in php5-fpm[400000+7ff000]
สิ่งที่แปลกคือฉันมีเว็บไซต์ 2 แห่งที่ใช้ PHP-FPM ในเครื่องนี้ทำงานได้ดีและอีกอัน (การติดตั้ง Tiny Tiny RSS) ทำให้ฉันมี 502 ซึ่งทั้งคู่ทำงานได้ดีมาก่อนก่อน
ฉันเปรียบเทียบทั้งไฟล์กำหนดค่าและพบว่าfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
ไม่มีไซต์ที่ได้รับผลกระทบ
ตอนนี้ทั้งไฟล์การกำหนดค่ามีบล็อกต่อไปนี้และทำงานได้ดีอีกครั้ง:
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include /etc/nginx/snippets/fastcgi-php.conf;
}
ปรับปรุง
ควรสังเกตว่า Ubuntu จัดส่งไฟล์พารามิเตอร์ fastcgi ที่เกี่ยวข้องสองไฟล์และตัวอย่างข้อมูลการกำหนดค่าที่มีให้ตั้งแต่ Vivid และPPAเวอร์ชัน โซลูชันได้รับการอัพเดตตามนั้น
ส่วนต่างของไฟล์พารามิเตอร์ fastcgi:
$ diff -up fastcgi_params fastcgi.conf
--- fastcgi_params 2015-07-22 01:42:39.000000000 +0200
+++ fastcgi.conf 2015-07-22 01:42:39.000000000 +0200
@@ -1,4 +1,5 @@
+fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
ตัวอย่างการกำหนดค่าใน /etc/nginx/snippets/fastcgi-php.conf
# regex to split $uri to $fastcgi_script_name and $fastcgi_path
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# Check that the PHP script exists before passing it
try_files $fastcgi_script_name =404;
# Bypass the fact that try_files resets $fastcgi_path_info
# see: http://trac.nginx.org/nginx/ticket/321
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;
fastcgi_index index.php;
include fastcgi.conf;