Nginx 가상 호스트 설정 과 다 중 도 메 인 이름, 다 중 포트, 다 중 가상 컴퓨터 설정

1211 단어 Linux 시스템
1. 가상 호스트
  가상 호스트 의 설정 위치: / etc / nginx / conf. d / 디 렉 터 리 의 default. conf 중
 [xiaokang@localhost conf.d]$ cat default.conf 

루트 가 nginx 루트 디 렉 터 리 인 것 을 볼 수 있 습 니 다.
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
[xiaokang@localhost conf.d]$ ll /usr/share/nginx/html
total 8
-rw-r--r--. 1 root root 494 Apr 23 22:36 50x.html
-rw-r--r--. 1 root root 612 Apr 23 22:36 index.html
[xiaokang@localhost conf.d]$ sudo vim  /usr/share/nginx/html/index.html

2. xiaokang 가상 호스트 를 추가 합 니 다. 여러 가상 호스트 를 추가 하면 여러 개의. conf 파일 을 만 듭 니 다.
[xiaokang@localhost conf.d]$ sudo cp default.conf xiaokang.conf
[xiaokang@localhost conf.d]$ ls
default.conf  xiaokang.conf

xiaokang. conf 내용 편집 은 다음 과 같 습 니 다.
server {
listen 80;
server_name www.xiaokang.test;
root /data/www;
index index.html index.htm;
}
3. 다 중 도 메 인 이름, 다 중 포트
가상 호스트 가 여러 포트 와 도 메 인 이름 을 설정 합 니 다.
server {
    listen       80;
    listen      9999;
    server_name  www.xiaokang.test www.xiaokang3.test;
    root /data/www;
    index  index.html index.htm;
}

좋은 웹페이지 즐겨찾기