- 在/usr/local/nginx/conf目录下nginx.conf文件是nginx的配置文件。
Html在nginx里
-
通过端口区分虚拟机
-
在nginx.conf文件中添加一个Service节点,修改端口号就可以
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html81;
index index.html index.htm;
}
}
-
通过域名区分虚拟机
可以通过修改host文件指定域名的ip地址。
Host文件的位置:C:\Windows\System32\drivers\etc
可以使用工具:
需要修改nginx.conf配置文件。
server {
listen 80;
server_name ithelei.com.cn;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-test3;
index index.html index.htm;
}
}
修改配置后需要重新加载配置文件。
- 邮箱 :ithelei@sina.cn
- Good Luck!