台所
鉄籠
鉄馬屋
まったり鉄馬旅
まったりCAMP
おもしろ旅
神社仏閣
滝 渓谷
紅葉
グルメ情報
まったり工房
保険関連の知識
D.I.Y.
nginx-1.23.3 ├─conf ├─contrib │ ├─unicode2nginx │ └─vim │ ├─ftdetect │ ├─ftplugin │ ├─indent │ └─syntax ├─docs ├─html ├─logs └─temp |
conf:nginxの定義ファイルです。nginx.confを必要に応じて修正します。 html:公開用ファイルを格納します。(ドキュメントルートとなります) |
変更前 |
# 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; #} |
変更後 |
# 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; } |