nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成 nginx
nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成
各サーバごとに設定ファイルを作成して以下のようにセット。
# more /etc/nginx/conf.d/xxxxx.conf
<pre class= brush:php >
server {
listen 80;
server_name xxxxx.com;
access_log /var/log/nginx/xxxxx.access.log main;
rewrite /(.*).html /index.php?para=$1 permanent;
location / {
root /var/www/html/xxxxx;
index index.html index.htm index.php;
}
location ~ ¥.php$ {
root /var/www/html/xxxxx;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
}
}
</pre>