nginx 가상 호스트 기반 도 메 인 이름 설정
1: nginx 가상 호스트, 같은 포트 80, 여러 개의 다른 도 메 인 이름 을 설정 합 니 다.nginx 기본 주 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf]# cat nginx.conf
user nginx;
worker_processes 1;
error_log logs/error.log;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
}
include ./conf.d/*.conf; // 。
}
2: 같은 포트 80 을 사용 하고 도 메 인 이름 에 접근 해 야 합 니 다.
www.zxl.com www.zxl.com
www.bbs.com www.bbs.com
www. zxl. com 가상 호스트 파일 설정
nginx 메 인 프로필 디 렉 터 리 에 하위 디 렉 터 리 를 만 들 면 참조 하기 편리 합 니 다.
[root@zxl-nginx conf]# mkdir conf.d
zxl. com. conf 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf.d]# cat zxl.com.conf
server {
listen 80;
server_name www.zxl.com zxl.com;
location / {
root /data/zxl;
index index.html index.htm;
access_log logs/zxl.access.log;
error_log logs/zxl.error.log;
}
}
bbs. com. conf 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf.d]# cat bbs.com.conf
server {
listen 80;
server_name www.bbs.com bbs.com;
location / {
root /data/bbs;
index index.html index.htm;
access_log logs/bbs.access.log;
error_log logs/bbs.error.log;
}
}
www. zxl. com 과 www. bbs. com 방문 디 렉 터 리 파일 만 들 기
[root@zxl-nginx ~]# ls -ld /data/{zxl,bbs}
drwxr-xr-x 2 root root 4096 Dec 18 10:08 /data/bbs
drwxr-xr-x 2 root root 4096 Dec 18 12:36 /data/zxl
bbs 와 zxl 디 렉 터 리 아래 파일 에 해당 하 는 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx ~]# cat /data/zxl/index.html
<h1>
This is a site www.zxl.com test!
</h1>
[root@zxl-nginx ~]# cat /data/bbs/index.html
<h1>
This is a site www.bbs.com test!
</h1>
nginx 문법 을 검사 하여 nginx 관련 프로필 에 문제 가 있 는 지 확인 합 니 다. nginx 는 프로필 문법 이 좋 은 지 확인 합 니 다!
OK 와 is successful 이 나 오 는 게 맞습니다.
[root@zxl-nginx ~]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
시작 nginx
[root@zxl-nginx ~]# /usr/local/nginx/sbin/nginx
[root@zxl-nginx ~]# lsof -i:80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 3476 root 10u IPv4 15998 0t0 TCP *:http (LISTEN)
nginx 3477 nginx 10u IPv4 15998 0t0 TCP *:http (LISTEN)
호스트 파일 설정
[root@zxl-nginx ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
127.0.0.1 www.zxl.com zxl.com
127.0.0.1 www.bbs.com bbs.com
테스트 방문 www. zxl. com 과 www. bbs. com 결 과 는 다음 과 같다.
[root@zxl-nginx ~]# elinks http://www.zxl.com --dump
This is a site www.zxl.com test!
[root@zxl-nginx ~]# elinks http://www.bbs.com --dump
This is a site www.bbs.com test!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.