RHEL7下Nginx虚拟主机配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RHEL7下Nginx虚拟主机配置相关的知识,希望对你有一定的参考价值。
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/;
}
}
}
本文出自 “随风飘扬” 博客,请务必保留此出处http://wjb10000.blog.51cto.com/9702295/1792546
以上是关于RHEL7下Nginx虚拟主机配置的主要内容,如果未能解决你的问题,请参考以下文章