Nginx 虚拟主机三种方式
长链接与短连接
1.长链接: 建立一次链接不断开,下次请求过来不建立链接
2.短连接:访问一次建立一次链接
Nginx虚拟主机
1.基于多IP方式
2.基于多端口方式
3.基于多域名方式
1.基于多IP方式
- 下面有插图详解(插图1)
# 进入此目录,创建.conf结尾文件
[root@web01 conf.d]# pwd
/etc/nginx/conf.d
[root@web01 conf.d]# vim maire.conf
server {
listen 80;
server_name 192.168.15.7;
location / {
root /opt/mairegame;
index index.html;
}
}
server {
listen 80;
server_name 172.16.1.7;
location / {
root /opt/xiangqigame;
index index.html;
}
}
2.基于多端口模式
server {
listen 80;
server_name 192.168.15.7;
location / {
root /opt/mairegame;
index index.html;
}
}
server {
listen 81;
server_name 192.16.15.7;
location / {
root /opt/xiangqigame;
index index.html;
}
}
3、基于多域名的方式
[root@web01 ~]# cat /etc/nginx/conf.d/maire.conf
server {
listen 80;
server_name www.game.com;
location / {
root /opt/mairegame;
index index.html;
}
}
server {
listen 80;
server_name www.game1.com;
location / {
root /opt/xiangqigame;
index index.html;
}
}
# 还需要做一步域名解析
'此处仅限Mac本'
# 进入终端
macintoshhd@junjiedeMacBook-Pro ~ % sudo -i (获取权限)
Password: (输入本机密码)
MacBook-Pro:~ root# vi /etc/hosts
# 添加域名解析
192.168.15.7 www.game.com www.game1.com
随后打开网址输入域名