An open API service indexing awesome lists of open source software.

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.

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()";

}
```