web-dev-qa-db-ja.com

Ubuntu 14.04でphp-fpm + nginxを使用中にエラースタックトレースまたはエラーログを取得できない

Ubuntu 14.04マシンでphp-fpm 5.5.9とnginx 1.4.6を使用しています。 apt-getパッケージマネージャーを使用してインストールしました。 index.phpスクリプトがエラーログおよびブラウザで検出したエラーのスタックトレースを取得できません。私はstackoverflowや他の記事からいくつかのソリューションを検索して実装しましたが、どれもうまくいきませんでした。ここに私のnginx confと私のphp-fpm confファイルがあります。愚かな間違いをしている場合は私を助けてください。

Nginx設定:

location ~ \.php$ {
        # With php5-fpm:
                #try_files $uri =404;
        include fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors on;
        fastcgi_read_timeout 600;
        fastcgi_send_timeout 600;
        proxy_connect_timeout  600;
        proxy_send_timeout  600s;
        proxy_read_timeout  600s;
        fastcgi_pass 127.0.0.1:7777;
        fastcgi_index index.php;
    }

PHP-FPM設定:

error_log = /tmp/php5-fpm.log

PHP-FPMプール構成:

catch_workers_output = yes 
slowlog = /var/log/php-fpm/$pool.log.slow
listen = 127.0.0.1:7777

php_flag[display_errors] = On 
php_admin_value[error_log] = /tmp/fpm-php.www.log 
php_admin_flag[log_errors] = On

前もって感謝します。

4
Tojo Chacko

次のように、サーバーディレクティブ内にサイトの構成を入れてみてください。

access_log  /var/log/nginx/your_site.log;

error_log   /var/log/nginx/your_site.log;

your_site.logを仮想ホストの名前-ドメイン名に置き換えます。

完全な例:

php-fpm

/etc/php5/fpm/php-fpm.conf

[global]
pid = /var/run/php5-fpm.pid
error_log = /var/log/php5-fpm.log
include=/etc/php5/fpm/pool.d/*.conf

/etc/php5/fpm/pool.d

[www]
user = www-data
group = www-data
pm = dynamic
pm.max_children = 10
pm.start_servers = 4
pm.min_spare_servers = 2
pm.max_spare_servers = 6

仮想ホスト

upstream php {
        server unix:/tmp/php-cgi.socket;
        server 127.0.0.1:9000;
}

server {
    listen   80; ## listen for ipv4; this line is default and implied

    root /srv/www/mysite;
    index index.php;

    server_name mysite.com www.mysite.com;

    access_log  /var/log/nginx/mysite_access.log;
    error_log   /var/log/nginx/mysite_error.log;

    location / {
         try_files $uri $uri/ /index.php?$args; 
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;

    location = /50x.html {
              root /usr/share/nginx/www;
        }



        location = /favicon.ico {
                log_not_found off;
                access_log off;
        }

        location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9$
        location ~ \.php$ {
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
                 }
        location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                expires max;
        access_log off;
                log_not_found off;
        }
}
1
Stef K

スクリプトの実行エラーが必要な場合は、/etc/php5/fpm/php.iniで構成されます。

ログファイルにエラーが必要な場合は、php.iniを編集します。

display_errors  = off 
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
error_log = /path/to/some/file.log

ブラウザでそれらが必要な場合は、php.iniを編集します。

display_errors  = on
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

または、スクリプトの上に追加します:

ini_set('display_errors',1);
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );

スタックトレースを直接logfileに記録する方法はわかりませんが、 here 独自のエラーハンドラの定義を実装する方法があります。

0
bistoco