nginx虚拟主机配置推荐(nginx配置虚拟主机的详细步骤)
类别:服务器 浏览量:471
时间:2021-10-01 01:03:17 nginx虚拟主机配置推荐
nginx配置虚拟主机的详细步骤虚拟主机使用的是特殊的软硬件技术,它把一台运行在因特网上的服务器主机分成一台台“虚拟”的主机,每台虚拟主机都可以是一个独立的网站,可以具有独立的域名,具有完整的Intemet服务器功能(WWW、FTP、Email等),同一台主机上的虚拟主机之间是完全独立的。从网站访问者来看,每一台虚拟主机和一台独立的主机完全一样。
利用虚拟主机,不用为每个要运行的网站提供一台单独的Nginx服务器或单独运行一组Nginx进程。虚拟主机提供了在同一台服务器、同一组Nginx进程上运行多个网站的功能。
配置虚拟主机有三种方法:- 基于域名的虚拟主机 : 不同的域名、相同的IP(此方式应用最广泛)
- 基于端口的虚拟主机 : 不使用域名、IP来区分不同站点的内容,而是用不同的TCP端口号
- 基于IP地址的虚拟主机 : 不同的域名、不同的IP ( 需要加网络接口 ,应用的不广泛) 基于IP地址
方式一:多网卡多IP
两个物理网卡,两个IP
# 两张物理网卡ens32和ens34 [root@nginx network-scripts]# ifconfig ens32 | awk 'NR==2 {print $2}' 192.168.126.41 [root@nginx network-scripts]# ifconfig ens34 | awk 'NR==2 {print $2}' 192.168.126.42
编辑配置文件,基于每个IP创建一个虚拟主机
# 为防止 /etc/nginx/conf.d/default.conf 配置文件影响,对其进行重命名 [root@nginx ~]# mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default [root@nginx ~]# vim /etc/nginx/conf.d/ip.conf # ens32网卡对应的虚拟主机 server { listen 192.168.126.41:80; location / { root /ip_ens32; index index.html; } } # ens34 网卡对应的虚拟主机 server { listen 192.168.126.42:80; location / { root /ip_ens34; index index.html; } }
创建虚拟主机的网页文件目录及文件
[root@nginx ~]# mkdir /ip_ens32 [root@nginx ~]# mkdir /ip_ens34 [root@nginx ~]# echo "ens32" > /ip_ens32/index.html [root@nginx ~]# echo "ens34" > /ip_ens34/index.html
检查配置文件的语法
[root@nginx ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
重载nginx服务
[root@nginx ~]# systemctl reload nginx
测试
[root@nginx ~]# curl 192.168.126.41 ens32 [root@nginx ~]# curl 192.168.126.42 ens34
方式二:单网卡多IP
为一个物理网卡配置多个ip
ip addr add IP/MASK dev 网卡名 # 删除 ip addr del IP/MASK dev 网卡名
其余步骤同上面多网卡多IP的配置
基于端口
配置
[root@nginx ~]# vim /etc/nginx/conf.d/port.conf server { listen 81; location / { root /port_81; index index.html; } } server { listen 82; location / { root /port_82; index index.html; } } [root@nginx ~]# mkdir /port_{81..82} [root@nginx ~]# echo "81" > /port_81/index.html [root@nginx ~]# echo "82" > /port_82/index.html [root@nginx ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@nginx ~]# systemctl reload nginx
测试
[root@nginx ~]# curl 192.168.126.41:81 81 [root@nginx ~]# curl 192.168.126.41:82 82
一般一个域名对应一个配置文件,便于管理
[root@nginx ~]# vim /etc/nginx/conf.d/test1.dxk.com.conf server { listen 80; server_name test1.dxk.com; location / { root /test1; index index.html; } } [root@nginx ~]# vim /etc/nginx/conf.d/test2.dxk.com.conf server { listen 80; server_name test2.dxk.com; location / { root /test2; index index.html; } } [root@nginx ~]# mkdir /test{1..2} [root@nginx ~]# echo "test1" > /test1/index.html [root@nginx ~]# echo "test2" > /test2/index.html [root@nginx ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@nginx ~]# systemctl reload nginx
# 配置域名解析 [root@nginx ~]# echo -e "192.168.126.41 test1.dxk.com\n192.168.126.41 test2.dxk.com" >> /etc/hosts [root@nginx ~]# cat /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 192.168.126.41 test1.dxk.com 192.168.126.41 test2.dxk.com [root@nginx ~]# curl test1.dxk.com test1 [root@nginx ~]# curl test2.dxk.com test2
这里有个问题:
如果在配置域名解析时由于写错了,那么访问该错误域名(未配置该错误域名的虚拟主机)时竟然还会返回网页内容。
[root@nginx ~]# vim /etc/hosts 192.168.126.41 test1.dxk.com 192.168.126.41 test3.dxk.com # 这里本应该是 test2.dxk.com ,但是由于写错了,而且对应test3.dxk.com域名的虚拟主机并不存在
访问该错误域名
[root@nginx ~]# curl test3.dxk.com test1 # 可以看到,还是会返回网页信息
因为在配置域名解析时,虽然域名写错了,但是IP是对的,那么此时服务端默认会返回满足是该IP且端口为80的排在第一个的虚拟主机的网页信息给客户端
[root@nginx ~]# ll /etc/nginx/conf.d/ -rw-r--r--. 1 root root 112 Jul 3 21:23 test1.dxk.com.conf -rw-r--r--. 1 root root 112 Jul 3 21:22 test2.dxk.com.conf
这是需要注意的
到此这篇关于nginx虚拟主机的文章就介绍到这了,更多相关nginx虚拟主机内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
您可能感兴趣
- nginx如何配置不显示nginx名字(Nginx安装完成没有生成sbin目录的解决方法)
- linux下安装nginx常见问题(Linux安装Nginx步骤详解)
- linux系统查看nginx系统版本(Linux中Nginx的防盗链和优化的实现代码)
- centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)
- nginx给需要转发的链接添加参数(Nginx 根据URL带的参数转发的实现)
- nginx常见错误码(Nginx常见的错误配置举例)
- python配合docker(Docker构建python Flask+ nginx+uwsgi容器)
- nginx 反向代理的参数(Nginx反向代理及负载均衡如何实现基于linux)
- 新手nginx反向代理问题(详解Nginx proxy_pass的一个/斜杠引发的血案)
- nginx最新配置(配置nginx 重定向到系统维护页面)
- nginx集群技巧(Vmware部署Nginx+KeepAlived集群双主架构的问题及解决方法)
- nginx反向代理多个server(Nginx反向代理多个服务器的实现方法)
- nginx怎么配置静态资源(nginx实现发布静态资源的方法)
- nginx的15种优化方案(Nginx开启Brotli压缩算法实现过程详解)
- nginx对静态文件开启缓存(nginx proxy_cache 缓存配置详解)
- nginx和apache服务器配置(Apache、Nginx 服务配置服务器端包含SSI)
- 谷雨前,吃牛羊肉别忘了吃河鲜,除湿还清热,加紫苏一炒特解馋(吃牛羊肉别忘了吃河鲜)
- 紫苏牛肉锅里滚一滚,香的鼻子都要掉了(紫苏牛肉锅里滚一滚)
- 每天都吃水果的好处(每天吃水果的好处与功效)
- 苹果15价格(苹果15价格512g官网)
- 春节放假几天(春节放假几天2023法定几天)
- 今天 3月13日,31年前,一个英雄少年感动了中国(今天3月13日31年前)
热门推荐
- mysql的三种模式(详解 MySQL的FreeList机制)
- Thread.Sleep与Task.Delay的区别
- linux部署flask项目(用uWSGI和Nginx部署Flask项目的方法示例)
- centos7 docker容器目录(CentOS7使用docker部署Apollo配置中心的实现)
- 如何在mysql中批量插入数据(MySQL如何快速批量插入1000w条数据)
- python eval函数原理(浅谈Python中eval的强大与危害)
- 如何查询8080端口是否被封(8080端口被占用怎么办?如何关闭被占用的8080端口)
- 云服务器搭建网站怎么选择合适(访问量过万的网站需要多大云服务器?)
- extjs column列布局
- mysql8.0.21的安装步骤(mysql8.0.23 msi安装超详细教程)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9