nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成 nginx

nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成
各サーバごとに設定ファイルを作成して以下のようにセット。

# more /etc/nginx/conf.d/xxxxx.conf
<pre class= brush:php >
server &#123;
listen 80;
server_name xxxxx.com;
access_log /var/log/nginx/xxxxx.access.log main;

rewrite /(.*).html /index.php?para=&#36;1 permanent;

location / &#123;
root /var/www/html/xxxxx;
index index.html index.htm index.php;
&#125;

location ~ &yen;.php&#36; &#123;
root /var/www/html/xxxxx;
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>