新しいCentos 7を設定しました。私はそれをインストールしました yum install php72u-fpm yum install nginx -y
次のことは、/etc/nginx/nginx.confで設定ファイルのルートフォルダを変更することでした。 /var/www/htmlで。
server_name _;
root /var/www/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
次に、新しいフォルダ/var/www/html/testを作成し、nginxに権限を与えましたchown -R nginx.nginx /var/www/html/test/ それから私のhttp://に達しました。。。。/test/ 403 Forbiddenが表示されます。エラーログを確認した結果、これが出ました。
2018/04/11 14:43:47 [error] 24229#0: *10 directory index of "/var/www/html/test/" is forbidden, client: *.*.*.*, server: _, request: "GET /test/ HTTP/1.1", host: "*.*.*.*"
しかし、驚くべきことにhttp://のようにこのコマンドを実行すると、。。。/test/page1.php私のローカルコンピュータにダウンロードされますが、これは確かにセキュリティの問題です。そうですか?これが起こらないようにするには?