nginx平滑升级和location案例

server/2024/11/13 8:19:06/

平滑升级 

//解压新的模块包,并且再次解压nginx源码包
[root@nginx ~]# unzip echo-nginx-module-master.zip 
[root@nginx ~]# tar -zxvf nginx-1.24.0.tar.gz//添加新的模块进行编译安装
[root@nginx ~]# cd nginx-1.20.0/
[root@nginx nginx-1.24.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --add-module=../echo-nginx-module-master//使用make编译
[root@nginx nginx-1.24.0]# make//备份源程序并停止、覆盖、启动服务
[root@nginx nginx-1.24.0]# ls
auto     CHANGES.ru  configure  html     Makefile  objs    src
CHANGES  conf        contrib    LICENSE  man       README
[root@nginx nginx-1.24.0]# nginx -s stop
[root@nginx nginx-1.24.0]# cp /usr/local/nginx/sbin/nginx /opt/
[root@nginx nginx-1.24.0]# cp objs/nginx /usr/local/nginx/sbin/nginx 
cp: overwrite '/usr/local/nginx/sbin/nginx'? y
[root@nginx nginx-1.24.0]# nginx
  • location案例

location区段,通过指定模式来与客户端请求的URL相匹配

功能

允许根据用户请求的URL来匹配定义的各个location,匹配时,此请求将被相应的location配置块中的配置所处理,例如做访问控制等功能

语法

location [修饰符] pattern {......}

修饰符

= 精确匹配

~ 正则表达式模式匹配,区分大小写

~* 正则表达式模式匹配,不区分大小写

^~ 前缀匹配,类似于无修饰符的行为,也是以指定模块开始,不同的是,如果模式匹配,那么就停止搜索其他模式了,不支持正则表达式

@ 定义命名location区段,这些区段客户端不能访问,只可以由内部产生的请求来访问,如try_files或者error_page等

//配置文件位置
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf//测试,检查配置文件内容
[root@nginx ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful//重载nginx
[root@nginx ~]# nginx -s reload//增加一个location字段
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location /abc {echo "lisy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc/sdsdafa
lisy//用“=”精准匹配
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location =/abc {echo "lisy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc/sdsdafa
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.24.0</center>
</body>
</html>
[root@test ~]# curl http://192.168.35.142/abc
lisy// ~:表示指定的正则表达式要区分大小写
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location ~ /abc$ {echo "lisy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc/
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.24.0</center>
</body>
</html>
[root@test ~]# curl http://192.168.35.142/asffaf/abc
lisy// ~*:表示指定的正则表达式不区分大小写
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location ~* /abc$ {echo "lisy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc
lisy
[root@test ~]# curl http://192.168.35.142/ABC
lisy//^~表示指定的正则表达式前缀匹配
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location ^~ /abc {echo "lisy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc/sdhjs
lisy
[root@test ~]# curl http://192.168.35.142/sdhjs/abc
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.24.0</center>
</body>
</html>//当“=”和“~”同时存在时,此时时 = 优先于 ~
[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
location ~ /abc$ {echo "lisy";}
location = /abc {echo "lsy";}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
//验证
[root@test ~]# curl http://192.168.35.142/abc
lsy


http://www.ppmy.cn/server/106858.html

相关文章

JUC-Synchronized原理进阶

轻量级锁 轻量级锁的使用场景&#xff1a;如果一个对象虽然有多线程要加锁&#xff0c;但加锁的时间是错开的&#xff08;也就是没有竞争&#xff09;&#xff0c;那么可以使用轻量级锁来优化。轻量级锁对使用者是透明的&#xff0c;即语法仍然是 synchronized 假设有两个方法同…

安卓13 背光调节非线性问题处理,调节范围不正常问题

总纲 android13 rom 开发总纲说明 目录 1.前言 2.问题分析 3.代码修改 4.彩蛋 1.前言 我们看看现在的版本的亮度图 2.问题分析 当背光亮度设置为0%时,每次按下亮度增加键或者 input keyevent BRIGHTNESS_UP,亮度UI的增幅较大,首次按下后亮度平滑提升至大约55%,随后继…

Notion使用详解一基础教程

Notion是一款非常流行的笔记和协作工具&#xff0c;它结合了笔记、数据库、看板、日历等多种功能&#xff0c;非常适合个人知识管理、团队协作以及项目规划等。下面是一个基础教程&#xff0c;帮助你快速上手Notion。 1. 注册与登录 访问Notion官网注册完成后&#xff0c;登录…

3、Unity【基础】Resources资源场景动态加载

文章目录 一、Resources资源动态加载1、Unity中特殊文件夹1、工程路径获取2、Resources资源文件夹3、StreamingAssets流动资源文件夹4、persistentDataPath持久数据文件夹5、Plugins插件文件夹6、Editor编辑器文件夹7、默认资源文件夹StandardAssets 2、Resources同步加载1、Re…

Java CORS:跨越资源边界,探索跨域资源共享的无限可能

引言 随着前端技术的飞速发展&#xff0c;越来越多的应用程序开始使用多种不同的后端服务。这些服务往往部署在不同的域上&#xff0c;这就引发了跨域访问的问题。CORS作为一种解决跨域问题的有效机制&#xff0c;对于现代Web开发至关重要。本文将详细介绍如何在Java环境中配置…

DNS详解

DNS详解 DNS 是一个域名系统&#xff0c;它主要用于将人类容易记忆的域名转换成ip地址。 默认情况下&#xff0c;设备会自动从网络供应商获取DNS服务器地址&#xff0c;并使用DNS服务器对域名进行解析。 此外&#xff0c;你也可以手动设置DNS服务器&#xff0c;具体操作系统…

python自动化脚本:让工作自动化起来

Python是一种流行的编程语言&#xff0c;以其简洁和易读性而闻名。它提供了大量的库和模块&#xff0c;使其成为自动化各种任务的绝佳选择。 我们将探讨9个Python脚本及其代码&#xff0c;可以帮助您自动化各种任务并提高工作效率。无论您是开发人员、数据分析师还是只是想简化…

iPhone短信误删如何恢复,四种方法找回短信

在日常使用手机的过程中&#xff0c;我们可能会因为误操作或其他原因不小心删除了重要的短信。这些短信可能包含了工作沟通、家人关怀或朋友间的温馨对话&#xff0c;一旦丢失&#xff0c;难免让人感到焦虑和不安。不过&#xff0c;别担心&#xff0c;针对iPhone短信误删的问题…