https://github.com/api7/apisix-nginx-module
https://github.com/api7/apisix-nginx-module
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/api7/apisix-nginx-module
- Owner: api7
- License: apache-2.0
- Created: 2021-03-15T09:37:54.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-06-16T09:00:36.000Z (8 months ago)
- Last Synced: 2025-06-16T09:59:23.109Z (8 months ago)
- Language: C
- Size: 481 KB
- Stars: 39
- Watchers: 4
- Forks: 18
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# APISIX Nginx Module
## Directive
### apisix_delay_client_max_body_check [on|off]
default: off
Delay client_max_body_size check until the body is read.
### apisix_mirror_on_demand [on|off]
default: off
Disable request mirror until we enable it in the Lua code.
## Block
### lua
Apply ngx.shared.DICT that shared by http and stream subsystem.
example:
```nginx
lua {
lua_shared_dict prometheus-metrics 15m;
}
```