1:通過(guò)端口區(qū)分虛擬機(jī)
在nginx.conf文件中添加一個(gè)Service節(jié)點(diǎn)衔瓮,修改端口號(hào)就可以
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html81;
index index.html index.htm;
}
}
2:通過(guò)域名區(qū)分虛擬機(jī)
域名介紹
PC機(jī)輸入域名走到DNS服務(wù)器(把域名轉(zhuǎn)化成ip)然后通過(guò)ip去訪問(wèn)服務(wù)器
可以通過(guò)修改host文件指定域名的ip地址储藐。
Host文件的位置:C:\Windows\System32\drivers\etc
也可以使用工具:SwitchHosts
3.配置基于域名的虛擬主機(jī)
需要修改nginx.conf配置文件
server {
listen 80;
server_name test3.xxx.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-test3;
index index.html index.htm;
}
}
修改配置后需要重新加載配置文件