-
Nginx 负债均衡的几种方式
轮询 http { upstream loadbalanceone{ server 127.0.0.1:9000; se
-
Nginx(OpenResty) 去掉默认错误页面中的版本号
说明 修改Nginx的源码才能去除,所以必须通过编译安装,yum或apt-get方式无法修改。 适用于OpenResty。 Nginx和OpenResty的开源
-
Ubuntu 使用 Certbot 给 Nginx 添加 SSL 证书
关于 Certbot Certbot不用注册Let's Encrypt账号(它会自动帮你注册),不用手动修改配置服务器配置,一行命令搞定。 安装示例 以我的服务
2021-05-10, Views: 2914 , Topics: Nginx Let's Encrypt HTTPS
-
OpenResty lua-resty-http unable to get local issuer certificate
错误信息 在请求https接口时,抛出了如下异常信息: lua ssl certificate verify error: (20: unable to get
-
OpenResty lua-resty-auto-ssl 无法颁发证书问题
开启 debug 日志 error_log logs/error.log debug; 错误日志 2021/02/17 11:13:47 [notice] 1
2021-05-09, Views: 2798 , Topics: OpenResty HTTPS Let's Encrypt
-
OpenResty lua-resty-auto-ssl: failed to set ocsp stapling for
错误日志 lua-resty-auto-ssl报错。 2021/02/17 08:59:12 [error] 28822#0: 17557 [lua] ssl
2021-05-08, Views: 3279 , Topics: OpenResty HTTPS Let's Encrypt
-
OpenResty 使用 lua-resty-auto-ssl 配置 https 证书
lua-resty-auto-ssl 开源地址 https://github.com/auto-ssl/lua-resty-auto-ssl lua-resty
2021-05-06, Views: 7126 , Topics: OpenResty Let's Encrypt HTTPS
-
使用 LuaRocks 管理 Lua 依赖
列出已安装依赖 luarocks list 查看帮助 luarocks help 查看命令帮助 luarocks help install 查找依赖 luaro
-
OpenResty 整合 LuaRocks - Linux
安装 LuaRocks 下载地址:https://luarocks.github.io/luarocks/releases 下载并解压 wget https:/
-
Linux 编译安装 OpenResty
下载 OpenResty 本文以openresty-1.19.3.1为例。 wget https://openresty.org/download/openre
-
Linux yum 安装 OpenResty
下载镜像 wget https://mirrors.tuna.tsinghua.edu.cn/openresty/centos/7/x86_64/openres
-
Arthas 获取 Spring Context 动态修改 Spring Boot 配置文件中的值
案例代码 Spring Boot配置文件:application.yml config: url: http://www.baidu.com isTes
2021-05-02, Views: 8324 , Topics: Arthas Spring Boot 诊断工具
-
Arthas 使用 watch 命令观察返回值、抛出异常、入参
案例代码 package com.example.arthas.controller; @Slf4j @RestController public class
-
Arthas 使用 trace 查找耗时操作和调用链路
案例代码 package com.example.arthas.controller; import com.example.arthas.view.Resu
-
Arthas 使用 stack 查找指定方法是被谁调用的
案例代码 package com.example.arthas.controller; @Slf4j @RestController public class
-
Arthas 使用 retransform 热更新 Srping Boot 代码
说明 本文基于Arthas 3.4.6。 相关代码 package com.example.arthas.controller; @Slf4j @RestCo
2021-04-27, Views: 5157 , Topics: Arthas Spring Boot 诊断工具
-
Arthas 使用 monitor 在指定时间段内统计方法的调用次数、平均返回时间等
monitor 命令 -c:指定时间段,默认120秒。 -c 10表示统计在指定的10秒内,方法执行了多少次、平均返回时间等信息。 monitor com.ex
-
Arthas 使用 tt 命令抓取调用异常、调用耗时、传入参数、返回参数
示例代码 package com.example.arthas.controller; @Slf4j @RestController public class
-
Arthas 使用 logger 不停机更新 Spring Boot logback 日志等级
前提 使用java -jar arthas-boot.jar并attach到运行中的Spring Boot服务。 logback 部分配置及部分代码 logba
-
WebSocket Sec Key 加密规则
示例 请求头 GET ws://192.168.1.2:20000/test/ws/testusername HTTP/1.1 Host: 192.168.1.
2021-04-24, Views: 4359 , Topics: WebSoket