web-dev-qa-db-ja.com

Nginxはphp-fpmを使用するphpスクリプトでのみ404をスローします

nginx + php-fpmを使用してテストサーバーをインストールしました。私は以下のすべてを試しました:

Nginx + Php5-fpmがphpファイルをレンダリングしない

nginx + php fpm-> 404 phpページ-ファイルが見つかりません

PHPファイルにアクセスすると、nginxは404エラーをスローします

私が試したことの要約:

  • 再インストール。
  • スクリプトの特権を変更しました(それらを0777に変更しました)。
  • fastcgi_intercept_errors on
  • レベルrootディレクティブをserverlocationおよびlocation ~ \.phpで確認しました。
  • fastcgi_param SCRIPT_FILENAMEディレクティブを確認しました。

サーバーは.phpスクリプトで404(のみ)を返します。名前を.htmlに変更すれば、問題ありません。これについてどうすればいいですか?

これは私のnginx.confです:

user nginx;
worker_processes 1;

error_log  /var/log/nginx/error.log;

pid        /run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    keepalive_timeout  2;

    include /etc/nginx/conf.d/*.conf;

    index   index.html index.htm;

    server {
        listen       80;
        server_name  _;
        root         /var/www/html;

        location / {
            root /var/www/html;
            index index.php index.html index.htm;
        }

        error_page  404              /404.html;
        location = /40x.html {
            #root /var/www/html;
        }


        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            #root /var/www/html;
        }

        location ~ \.php$ {
            root           /var/www/html;
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass   unix:/var/run/php5-fpm.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }


    }

}
11
arielnmz

私が読んだ本がphp-fpm 7.0.x(現在7.0.19)とnginx 1.12(現在1.12.0)で設定したパス/php_statusに一致しない文字列を提供したため、実際には「見つかりません」エラーが発生しました)

これが/etc/php/7.0/fpm/pool.d/{config}です

pm.status_path = /php_status

これは/etc/nginx/sites-availabledefaultの設定です(私はUbuntuにいます)

server {
  listen 80 default;
  root /var/www;

  index index.html index.htm default.html;
  access_log /dev/null;
  error_log /dev/null;

  location / {
    try_files $uri $uri/ =404;
  }

  location /php_status {
    fastcgi_pass unix:/var/run/php7.0-fpm.sock;
    # fastcgi_pass 127.0.0.1:9000;
    fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    include fastcgi_params;
    allow 127.0.0.1;
    deny all;
  }
}

注:以下は、/php_statusがインターネット上で一般公開されないように設計されています(またはPHP提供またはデフォルトのホスト用に設定されています)。また、fastcgi_passディレクティブが含まれていますtcpおよびunix-socket php-fpm

また、次の2つのコマンドを実行する必要があります。

Sudo service nginx reload
Sudo service php7.0-fpm restart

確認して実行してみてください

curl http://127.0.0.1/php_status
0
MrMesees