0
私はcentos7でlnmpをビルドします。次に、私はchrome.Followを使ってアクセスします。nginxの設定方法
ファイルが見つかりません。このような
私のnginxの設定ファイル:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location/{
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
#error_page 404 /404.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;
#}
# 添加下面内容
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
#include fastcgi.conf;
}
# 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;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
私のディレクトリは:
[[email protected] html]$ pwd
/usr/share/nginx/html
[[email protected] html]$ ll
total 35272
-rw-r--r--. 1 michael www 15086 Jun 26 2016 favicon.ico
-rw-rw-r--. 1 michael michael 7 Jul 31 21:49 index.html
-rw-rw-r--. 1 michael michael 20 Jul 24 04:14 index.php
-rw-r--r--. 1 michael www 432 Aug 5 2016 index.php.bak
-rw-r--r--. 1 michael www 36085974 Feb 20 03:50 iwwenbo.zip
drwxr-xr-x. 3 michael www 52 Aug 17 2016 sites
[[email protected] html]$ cat index.php
<?php
phpinfo();
?>
誰が私を伝えることができますか?何か間違っていますか?私は何度も試みました。それはいくつかのファイルを見つけることができないようだが、index.phpはすでに存在する、私はどのファイルが見つかりませんかわからない。
古典的なエラーです。 https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ルート内のルート –