RHEL7下Nginx虚拟主机配置
前面两节讲过安装和配置文件了,这里写出配置文件,大家根据内容修改配置文件就可以了。
http {
server{
listen 80;
server_name 192.168.1.20;
access_log log/192.168.1.20 main;
location / {
index index.html;
root /application/nginx/html/;
}
}
server{
linsten 80;
server_name 192.168.1.30;
access_log log/192.168.1.30 main;
location / {
index index.html;
root /application/nginx/html/;
}
}
}
时间: 2024-10-13 12:22:53