서버 데이터베이스 시리즈-Nginx 가상 컴퓨터 설정

설정:
http {

 server {

 listen          80;

 server_name     www.domain1.com;

 access_log      logs/domain1.access.log main;

 location / {

 index index.html;

 root  /var/www/domain1.com/htdocs;

 }

 }

 server {

 listen          80;

 server_name     www.domain2.com;

 access_log      logs/domain2.access.log main;

 location / {

 index index.html;

 root  /var/www/domain2.com/htdocs;

 }

 }

}

설명
모듈 에 모듈 만 새로 추가 하면4.567917.구체 적 으로 귀하 의 실제 수요 에 따라 설정 합 니 다

좋은 웹페이지 즐겨찾기