51工具盒子

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

最新发布

kibana 展示 nginx 接口访问量
网络运营

kibana 展示 nginx 接口访问量

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

kibana 展示 nginx 接口访问量 [Kibana添加Nginx Dashboard可视化;-CSDN博客](https://blog.csdn.net/qq_44930876/article/details/128452586) [\[elk\]logstash统计api访问失败率 - _毛台 - 博客园 (cnblogs.com)](https://www.cn...

nginx 安全 加固
网络运营

nginx 安全 加固

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

### 0-针对Nginx SSL协议进行安全加固 Nginx SSL协议采用TLSv1.2: 1、打开`conf/nginx.conf`配置文件(or include file in the main configuration file); 2、配置 server { ... ssl...

nginx 443 标准配置
开源软件

nginx 443 标准配置

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

nginx 443 标准配置 server { listen 443 ssl; server_name test.baimeidashu.com; ssl_certificate /etc/nginx/ssl_key/test.baimeidashu.com/test.baimeidashu.com.pem; ...

nginx set 指令 rewitelog
软件使用

nginx set 指令 rewitelog

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

[nginx配置指令rewrite的last、break、redirect、permanent参数详解 - 简书 (jianshu.com)](https://www.jianshu.com/p/3e0be2b21737) server { listen 80; server_name example.com; ...

nginx proxy_pass
开发笔记

nginx proxy_pass

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

在编写proxy_pass的时候,后面的值要不要加"/"? #### proxy_set_header 该指令可以更改Nginx服务器接收到的客户端请求的请求头信息,然后将新的请求头发送给代理的服务器 | 语法 | proxy_set_header field value; ...

nginx 可视化管理平台 Nginx-Proxy-Manager
新视野

nginx 可视化管理平台 Nginx-Proxy-Manager

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

nginx-proxy-manager 是一个反向代理管理系统,它基于 NGINX,具有漂亮干净的 Web UI。还可以获得受信任的 SSL 证书,并通过单独的配置、自定义和入侵保护来管理多个代理。它是开源的,斩获 11.8K 的 Star 数。{#articleContentId} [Nginx 可视化管理平台 Nginx-Proxy-Manager 中文入门指南-CSDN...

nginx 代理 websocker 4层转发
日常运维

nginx 代理 websocker 4层转发

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

需求, 后端有websokcer 通信, 目标: 实现通过nginx 监听 8193 转发到后端。 主要参考 `stream ` 模块,它跟http 是同一级别的。 user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; ...