51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

软件使用

nginx 配置 websocket

nginx 配置 websocket

厉飞雨 阅读(77) 评论(0) 赞(6)

websocket 长链接 配置 解决nginx转发websocket报400错误 [解决nginx转发websocket报400错误_error: unexpected server response: 400-CSDN博客](https://blog.csdn.net/ffggnfgf/article/details/102029377) 其中最重要的是下面这三行 ...

正则表达式汇总 nginx

正则表达式汇总 nginx

厉飞雨 阅读(50) 评论(0) 赞(5)

正则表达式字符 常用的正则表达式元字符       ^ :匹配输入字符串的起始位置       $ :匹配输入字符串的结束位置^ :匹配输入字符串的起始位置       * :匹配前面的字符零次或多次。如"ol*"能匹配"o"及"ol"、"oll&quo...

nginx location 分类

nginx location 分类

厉飞雨 阅读(67) 评论(0) 赞(5)

### 1.location分类 一般location分为三大类 (1)精准匹配:location = pass {...} 精确匹配字符串 (2)正则匹配:location ~ pass {...} 按照正则表达式方式匹配 (3)一般匹配:location pass {...} 只要包含pass字符都...

nginx rewriter flag 介绍-redirect-permanent-break-last

nginx rewriter flag 介绍-redirect-permanent-break-last

厉飞雨 阅读(84) 评论(0) 赞(4)

redirect; #临时重定向,重写完成后以临时重定向方式直接返回重写后生成的新URL给客户端,由客户端重新发起请求; 使用相对路径,或者http://或https://开头,状态码:302】 permanent; #重写完成后以永久重定向方式直接返回重写后生成的新URL给客户端,由客户端重新发起请求,状态码:301 ...

nginx 7个 应用场景

nginx 7个 应用场景

厉飞雨 阅读(65) 评论(0) 赞(7)

### 1- web 服务器 ![](http://static.51tbox.com/static/2024-08-29/col/4ea96bb80ed50266aa0dd3598463266f/0407b4c4d4844707aaef09e65344bd21.png.jpg) ### 2- 反向代理 ![](http://static.51tbox.com/stati...

nginx 代理到 阿里云oss

nginx 代理到 阿里云oss

厉飞雨 阅读(74) 评论(0) 赞(8)

![](http://static.51tbox.com/static/2024-08-29/col/e8594dba94360a499671221f7b2f4ac1/f4ec150b2ec7498c97f9566f186786eb.png.jpg) <Error> <Code>NoSuchKey</Code> ...

带监控模块的nginx镜像

带监控模块的nginx镜像

厉飞雨 阅读(71) 评论(0) 赞(6)

Nginx -vts学名:Nginx virtual host traffic status module.也就是nginx虚拟主机流量状态监控模块.会记录从nginx重启以来,所有的nginx的请求情况. 监控Nginx主要用到以下三个模块 带监控模块的nginx镜像 docker run --name nginx -d -it -p 80:80 vivin...