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 &#123;
listen 80;
server_name xxxxx.com;
access_log /var/log/nginx/xxxxx.access.log main;

location / &#123;
root /var/www/html/yyyyy/zzzzz;
index index.php index.html index.htm ;

&#125;

location ~ &yen;.php&#36; &#123;
root /var/www/html/yyyyy/zzzzz;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME &#36;document_root/&#36;fastcgi_script_name;
include fastcgi_params;
&#125;
&#125;
</pre>