配置Nginx虚拟主机

<h2 id="实验环境">实验环境

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

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

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

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

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

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

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

location / {
}
}

nginx服务

systemctl start nginx

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

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

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 / {
}
}

nginx服务

systemctl restart nginx

hosts文件

编辑C:\Windows\System32\drivers\etc\hosts文件, 添加以下内容(根据实际情况自己修改)

192.168.204.135   site1.test.com  
192.168.204.135   site2.test.com

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

ifconfig ens33:1 192.168.204.151
ifconfig ens33:2 192.168.204.152

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

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 / {
}
}

nginx服务

systemctl restart nginx

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

本文链接:

相关文章

文章浏览阅读3.7k次,点赞2次,收藏5次。Nginx学习笔记一、N...
文章浏览阅读1.7w次,点赞14次,收藏61次。我们在使用容器的...
文章浏览阅读1.4k次。当用户在访问网站的过程中遇到404错误时...
文章浏览阅读2.7k次。docker 和 docker-compose 部署 nginx+...
文章浏览阅读1.3k次。5:再次启动nginx,可以正常启动,可以...
文章浏览阅读3.1w次,点赞105次,收藏182次。高性能:Nginx ...