神剑山庄资源网 Design By www.hcban.com

实验环境

一台最小化安装的CentOS 7.3虚拟机

配置基本环境

1. 安装nginx

yum install -y epel-*
yum isntall -y nginx vim

2. 建立虚机主机的站点根目录

mkdir /var/wwwroot
mkdir /var/wwwroot/site1
mkdir /var/wwwroot/site2
echo -e "site1"  /var/wwwroot/site1/index.html
echo -e "site2"  /var/wwwroot/site2/index.html

CentOS 7.3配置Nginx虚拟主机的方法步骤

3. 关闭CentOS的防火墙

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

CentOS 7.3配置Nginx虚拟主机的方法步骤

配置基于端口的虚拟主机

1. 编辑nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

2. 添加以下内容

server {
  listen 8081;
  root /var/wwwroot/site1;
  index index.html;

  location / {
  }
}
server {
 listen 8082;
 root /var/wwwroot/site2;
 index index.html;

 location / {
 }
}

CentOS 7.3配置Nginx虚拟主机的方法步骤

3. 启动 nginx 服务

systemctl start nginx

4. 在宿主机访问两个站点

http://192.168.204.135:8081/
http://192.168.204.135:8082/

CentOS 7.3配置Nginx虚拟主机的方法步骤 

CentOS 7.3配置Nginx虚拟主机的方法步骤

配置基于域名的虚拟主机

1. 重新编辑nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

2. 删除原内容,重新添加以下内容

server {
  listen 80;
  server_name site1.test.com;
  root /var/wwwroot/site1;
  index index.html;

  location / {
  }
}
server {
 listen 80;
 server_name site2.test.com;
 root /var/wwwroot/site2;
 index index.html;

 location / {
 }
}

CentOS 7.3配置Nginx虚拟主机的方法步骤

3. 重启 nginx 服务

systemctl restart nginx

4. 在Windows上修改 hosts 文件

编辑 C:\Windows\System32\drivers\etc\hosts 文件,

添加以下内容(根据实际情况自己修改)

192.168.204.135 site1.test.com

192.168.204.135 site2.test.com

CentOS 7.3配置Nginx虚拟主机的方法步骤

5. 在宿主机访问两个站点

http://site1.test.com/
http://site2.test.com/

CentOS 7.3配置Nginx虚拟主机的方法步骤 

CentOS 7.3配置Nginx虚拟主机的方法步骤

配置基于IP的虚拟主机

1. 在虚拟机增加两个IP地址

ifconfig ens33:1 192.168.204.151
ifconfig ens33:2 192.168.204.152

2. 重新编辑nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

3. 删除原内容,重新添加以下内容

server {
  listen 192.168.204.151:80;
  root /var/wwwroot/site1;
  index index.html;

  location / {
  }
}
server {
 listen 192.168.204.152:80;
 root /var/wwwroot/site2;
 index index.html;

 location / {
 }
}

CentOS 7.3配置Nginx虚拟主机的方法步骤

4. 重启 nginx 服务

systemctl restart nginx

5. 在宿主机访问两个站点

http://192.168.204.151/
http://192.168.204.152/

CentOS 7.3配置Nginx虚拟主机的方法步骤 

CentOS 7.3配置Nginx虚拟主机的方法步骤

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

标签:
centos7配置nginx虚拟主机,centos,nginx虚拟主机

神剑山庄资源网 Design By www.hcban.com
神剑山庄资源网 免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
神剑山庄资源网 Design By www.hcban.com

评论“CentOS 7.3配置Nginx虚拟主机的方法步骤”

暂无CentOS 7.3配置Nginx虚拟主机的方法步骤的评论...

P70系列延期,华为新旗舰将在下月发布

3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。

而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?

根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。