Nginx 虚拟主机配置
2022/8/5 5:22:52
本文主要是介绍Nginx 虚拟主机配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
由于ipv4的ip地址数量有限,因此很多时候我们会使用一个ip对应多个域名。在nginx中,通过修改nginx.conf中的server块,就可以定义虚拟主机,每一个server块就是一个虚拟主机。这个server块只处理对应的域名的请求,这样一个服务器,使用一个ip就可以通过nginx发布不同的服务,来处理相应域名的访问请求。
nginx中虚拟主机的实现
当安装好nginx后,默认的nginx.conf文件为如下所示
[root@node1 conf]# cat nginx.conf |grep -v '#' |grep -v '^$' worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
此时我们通过修改server{}块来实现虚拟主机的请求与分发。
1)修改nginx.conf
例如,修改ngxin.conf文件为如下格式。然后就定义了两个虚拟主机 v1.ryan.net 和v2.ryan.net
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name v1.ryan.net; location / { root /data/www/v1.ryan.net/; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } server { listen 80; server_name v2.ryan.net; location / { root /data/www/v2.ryan.net/; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
2) 建立服务部署目录,并创建简单的文件。
[root@node1 conf]# mkdir -p /data/www/v{1,2}.ryan.net [root@node1 conf]# cd /data/www/v1.ryan.net [root@node1 v1.ryan.net]# echo "v1.ryan.net" > index.html [root@node1 v1.ryan.net]# cd /data/www/v2.ryan.net/ [root@node1 v2.ryan.net]# echo "v2.ryan.net" > index.html [root@node1 v2.ryan.net]#
3)重启nginx服务,使新的配置文件生效。
[root@node1 v2.ryan.net]# /usr/pkgs/nginx/sbin/nginx -s reload [root@node1 v2.ryan.net]#
4) 修改本地c:\Windows\System32\drivers\etc\hosts文件,添加DNS域名解析
5) 浏览器测试虚拟主机网页
nginx.conf拆分与优化
在之前的步骤中,已经实现了虚拟主机,但是有个问题就是,如果每次需要添加或删除某个虚拟主机,我们都需要修改nginx.conf,这样nginx.conf会变得很大和不容易管理,这时我们可以考虑使用include 函数的方式。来实现解耦,将server块单独放在一个目录中,然后每个server块,单独使用一个配置文件,互相不干扰。
首先创建子目录和虚拟主机配置文件
[root@node1 v2.ryan.net]# cd /usr/pkgs/nginx/conf/ [root@node1 conf]# mkdir domains [root@node1 conf]# cd domains/ [root@node1 domains]# vi v1.ryan.net [root@node1 domains]# vi v2.ryan.net # configuration file /usr/pkgs/nginx/conf/domains/v1.ryan.net: server { listen 80; server_name v1.ryan.net; location / { root /data/www/v1.ryan.net/; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } # configuration file /usr/pkgs/nginx/conf/domains/v2.ryan.net: server { listen 80; server_name v2.ryan.net; location / { root /data/www/v2.ryan.net/; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
修改nginx.conf
然后修改nginx.conf,修改之前做好备份,运维工作备份最重要
[root@node1 conf]# cp /usr/pkgs/nginx/conf/nginx.conf [root@node1 conf]# vi /usr/pkgs/nginx/conf/nginx.conf # configuration file /usr/pkgs/nginx/conf/nginx.conf: worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; include domains/*; }
验证配置文件并重启nginx服务
然后验证配置文件 nginx -t 并重启服务,然后重新登录v1.ryan.net和v2.ryan.net,nginx.conf配置优化结束。
[root@node1 conf]# /usr/pkgs/nginx/sbin/nginx -t [root@node1 conf]# /usr/pkgs/nginx/sbin/nginx -s reload
这篇关于Nginx 虚拟主机配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享