web-dev-qa-db-ja.com

NginxとPHP-FPMを使用すると400Bad Requestエラーが発生します。なぜですか?

私はウェブサイトを運営しようとしています(PHP-現時点では技術的にはMySQLは必要ありませんが、開発を続けると近い将来に必要になる可能性があるので、先に進みましたUbuntu 12.04.1LTSでnginx1.2.4とPHP-FPM5.3.3を使用してインストールしました。私が知る限り、何も悪いことはしていませんが、明らかに何かが正しくないようです。ウェブサイトを閲覧しようとすると、400 Bad Requestエラーが発生します。ほとんどの場合、1つのガイドに従っており、Unixソケットを使用するようにPHP-FPMを設定しないことを除いて、推奨されるすべてのことを行っています。また、nginx、PHP、およびMySQLを起動/停止するときに、/etc/init.d/ではなくserviceを使用しました。

とにかく、ここに私の関連する構成ファイルがあります(私は私のドメイン名のような個人/機密の詳細のみを検閲しました-私の本名が含まれています):

/ etc/nginx/nginx.conf

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events {
        worker_connections 768;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 15;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

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

        ##
        # Logging Settings
        ##

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

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

        ##
        # nginx-naxsi config
        ##
        # Uncomment it if you installed nginx-naxsi
        ##

        #include /etc/nginx/naxsi_core.rules;

        ##
        # nginx-passenger config
        ##
        # Uncomment it if you installed nginx-passenger
        ##

        #passenger_root /usr;
        #passenger_Ruby /usr/bin/Ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}

/ etc/nginx/sites-enabled/subdomain.mydomain.net

server {
        listen 80;      # listen for IPv4
        listen [::]:80; # listen for IPv6

        server_name www.subdomain.mydomain.net subdomain.mydomain.net;

        access_log /srv/www/subdomain.mydomain.net/logs/access.log;
        error_log /srv/www/subdomain.mydomain.net/logs/error.log;


        location / {
                root /srv/www/subdomain.mydomain.net/public;
                index index.php;
        }


        location ~ \.php$ {
                try_files $uri =400;
                include fastcgi_params;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME /srv/www/subdomain.mydomain.net/public$fastcgi_script_name;
        }
}

上記の構成ファイルにリストされているすべてのディレクトリは、私のサーバーでは正しいです(私の知る限り)。

/etc/php5/fpm/pool.d/www.confまたは/etc/php5/fpm/php.iniはかなり長いので、この投稿には含めませんでしたが、Pastebinに投稿しました: http://Pastebin.com/ensErJD8 and http://Pastebin.com/T23dt7vM 、それぞれ。ただし、2つのファイルのいずれかで変更したのはphp.iniだけで、ユーザーからexpose_phpファイル拡張子を非表示にするために.phpoffに設定しました。 。

問題を解決するにはどうすればよいですか?追加の詳細を提供する必要がある場合はお知らせください。

1
Bob

これはおそらくタイプミスです:

            try_files $uri =400;

ほぼ確実に次のようになります。

            try_files $uri =404;
1
Michael Hampton

TechZillaはすでにこれを述べていると思いますが、次の行を変更できます。

fastcgi_pass 127.0.0.1:9000;

これになります。

fastcgi_pass unix:/var/run/php5-fpm.sock;

PHP-FPMをインストールしたとおっしゃっていたので、TCPを介して渡すよりも.sockメソッドを使用する方がよいと思いました。

PHP-FPMをインストールするパッケージでも必要な権限が設定され、正しく構成されている場合は、.sockメソッドを介してPHP-FPMに接続できます。そうでない場合は、127.0.0.1:9000を介してPHP-FPMに接続する必要がある場合があります。そのことを知らせてくれたPaulに感謝します。


この行が次のようになっている可能性もあります。

include fastcgi_params;

これに変更することができます:

include fastcgi.conf;

しかし、これを当てにしないでください。これが私のUbuntuServer VMで機能する理由はわかりませんが、現時点では機能しています。


ソース: https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-14-04

1
user2442110