首页 > 服务器 > Web服务器 > 正文

nginx 虚拟主机设置实例(多网站配置)

2024-09-01 13:44:56
字体:
来源:转载
供稿:网友

配置文件:

复制代码 代码如下:


http {
server {
listen80;
server_name;
access_loglogs/domain1.access.log main;
location / {
index index.html;
root /var/www/domain1.com/htdocs;
}
}

server {
listen80;
server_name;
access_loglogs/domain2.access.log main;
location / {
index index.html;
root /var/www/domain2.com/htdocs;
}
}
}

说明:
只要在模块里面新增模块;具体的根据您的实际需求去配置。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表