Hanada
Hanada
This feature is very much needed, and the important reason why I haven't considered deploying umami yet is the lack of SSO logic. For a platform with several components/sites, SSO...
The connection header will be specially processed by nginx proxy (the default header value is "close"). You must use proxy_set_header to set the value of the connection header. You can...
The abbreviation for `response` is usually `rep` or `resp`, or consider not using the abbreviation and directly name the directive: `modsecurity_skip_request_body_filter` and `modsecurity_skip_response_body_filter`
@alexzzh nginx最新的1.27.3主线版本以上开始官方支持动态域名解析了,这个模块有进行兼容么
Today, nginx released version 1.27.5 and listed it as a stable version (alias version 1.29.0), which brings features such as quic's cubic congestion control. Based on the current situation, I...
content_by_lua_block -> access_by_lua_block
The add_header directive takes effect after the headers_more and lua content and lua header_filter phase. If you want to use lua code or headers_more directive, please consider the following configuration...
我觉得这个需求挺好的,我现在就是用systemd或者docker拉起一个config.conf文件,这个文件本质上是一个shell文件, ``` #!/bin/bash # client - xxxxx1 /usr/local/tcp2ws/bin/tcp2ws xxx xxxxx & # client - xxxxx2 /usr/local/tcp2ws/bin/tcp2ws xxxx xxxx & # Keep Script Running (if you use systemd to run this...
所以如果要简单化处理就是一个worker进程处理一个转发实例,master只负责守护各worker进程,甚至可以考虑实现reload或者动态加载配置文件
Openresty does not support upstream active health checks, you need to bundle third-party modules, or use Lua implementation: https://github.com/openresty/lua-resty-upstream-healthcheck. This library is built into Openresty.