次の手順で、nginxサーバーとphp-fpmをCentOS 6システム(Amazon EC2でホストされている)にインストールしました。
http://emka.web.id/linux/centos-linux/2011/installing-nginx-with-php-and-php-fpm/
Amazonが提供するパブリックDNSにアクセスすると、静的html(index.html)が読み込まれるため、nginxは機能しますが、「index.phpまたはhello.php」と同じディレクトリにphpページを読み込もうとするとエラーが発生します。ページに次のメッセージが表示されます:「お探しのページは一時的に利用できません。しばらくしてからもう一度お試しください。」パラメータなしでphp-fpmを実行し、phpページを再度ロードしようとすると、そのページは送信されませんが、代わりに「入力ファイルが指定されていません」というテキストメッセージが表示されます。
ファイルがあるデフォルトのディレクトリは/ usr/share/nginx/htmlです
設定に問題があると思いますが、phpファイルにあるのかnginxconfファイルにあるのかわかりません。 /etc/nginx/nginx.confの数行が最も関連性があると思います:
#
# The default server
#
server {
listen 80;
server_name _;
#charset koi8-r;
#access_log logs/Host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
ちなみに、すべてのインストール操作と「nginxstart」と「php-fpm」はrootによって行われています。これは、そのスーパーユーザーとのSSH経由でしかアクセスできないためです。問題に関連しているのかわかりませんが、Sudoでは通常のユーザーを使用することをお勧めします。
location /
とlocation ~ \.php$
に異なるroot
がありますSCRIPT_FILENAME
のパス値をハードコーディングしないでください。"入力ファイルが指定されていません"はPHP Nginxが検索するように指示しているファイルが見つからないことを意味します。したがって、SCRIPT_FILENAME
をfastcgi_params
:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
(または代わりにfastcgi.conf
を含める)
PHPの場所を次のように変更します:
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
それはうまくいくでしょう。
たぶん、fastcgi_paramでフルパスを実行してみてください(これが私が行った方法です):SCRIPT_FILENAME/var/www/scripts/$ fastcgi_script_name
また、php-fpmとnginxのログには何がありますか? fpmプールの定義を追加していただけますか?