スキップしてメイン コンテンツに移動

投稿

ラベル(host)が付いた投稿を表示しています

nginx で virtualhost

nginx の .conf -------------------- --------------- --------------- --------------- --------------- --------------- server {         listen 80;         server_name ××××××.com;         root /××××/××××/××××/××××/web1;         index index.php index.html;         location ~ ......... {                 ......................;         }                          location ~ .......... {                 ......................;         } } -------------------- --------------- --------------- --------------- --------------- --------------- ⬆この server ブロックを増やすだけです。 試しにポートとドキュメントルートを変えた server ブロックを追加してみた。 /××××/××××/××××/××××/web2にソースを配置して、 /etc/init.d/nginx restart を...