nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する nginx
nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する <br>
以下、xxxxx.comのドメインを取得してそのphpソースを/var/www/html/yyyyy/zzzzz配下に格納した場合の設定
<pre class= brush:php >
# more /etc/nginx/conf.d/xxxxx.conf
server {
listen 80;
server_name xxxxx.com;
access_log /var/log/nginx/xxxxx.access.log main;
location / {
root /var/www/html/yyyyy/zzzzz;
index index.php index.html index.htm ;
}
location ~ ¥.php$ {
root /var/www/html/yyyyy/zzzzz;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
}
}
</pre>