标签:虚拟 index 主机 目录 bsp 根目录 配置 cat .com
例子1: 基于域名的虚拟主机
server {
listen 80; #监听端口
server_name a.com; #监听域名
location / {
root /var/www/a.com; #根目录定位
index index.html;
}
}
例子2: 基于端口的虚拟主机配置
server {
listen 8080;
server_name 192.168.1.204;
location / {
root /var/www/html8080;
index index.html;
}
}
标签:虚拟 index 主机 目录 bsp 根目录 配置 cat .com
原文地址:http://www.cnblogs.com/aGboke/p/6719850.html