https://github.com/sysulq/lua-resty-waf
A simple web application firewall based on OpenResty.
https://github.com/sysulq/lua-resty-waf
Last synced: about 1 year ago
JSON representation
A simple web application firewall based on OpenResty.
- Host: GitHub
- URL: https://github.com/sysulq/lua-resty-waf
- Owner: sysulq
- License: mit
- Created: 2014-05-20T12:41:59.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-23T03:45:45.000Z (about 12 years ago)
- Last Synced: 2025-02-13T04:47:22.343Z (over 1 year ago)
- Language: Lua
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lua-resty-waf
=============
This is a simple Web Application Firewall based on OpenResty.
Synopsis
=============
```
http{
lua_package_path '/path/to/waf/?.lua;;';
init_by_lua '
waf = require "waf"
';
access_by_lua "waf:run()";
}
```