gitextract_zad3cxq9/ ├── .gitignore ├── README.md ├── demo1/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ └── welcome.lua ├── demo10/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── html/ │ │ └── index.html │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── rewrite.lua │ │ └── web/ │ │ ├── article.lua │ │ └── index.lua │ └── lualib/ │ ├── lite/ │ │ ├── mvc.lua │ │ └── req.lua │ └── resty/ │ └── template.lua ├── demo11/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── html/ │ │ └── index.html │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── rewrite.lua │ │ ├── waf.lua │ │ └── web/ │ │ └── index.lua │ └── lualib/ │ ├── lite/ │ │ ├── mvc.lua │ │ └── req.lua │ └── resty/ │ └── template.lua ├── demo12/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── tpl/ │ │ │ └── index.html │ │ └── web/ │ │ └── index.lua │ └── lualib/ │ ├── lite/ │ │ ├── mvc.lua │ │ └── req.lua │ └── resty/ │ ├── cookie.lua │ └── template.lua ├── demo13/ │ ├── README.md │ ├── conf/ │ │ ├── GeoTrust_Global_CA.pem │ │ └── nginx.conf │ ├── html/ │ │ └── index.html │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── req.lua │ │ └── test.lua │ └── lualib/ │ └── resty/ │ ├── http.lua │ └── http_headers.lua ├── demo14/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ └── logs/ │ └── .gitignore ├── demo15/ │ └── README.md ├── demo16/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── html/ │ │ ├── index.html │ │ └── js/ │ │ └── index.js │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── global_config.lua │ │ ├── utils.lua │ │ └── web/ │ │ ├── mvc.lua │ │ └── template.lua │ └── lualib/ │ └── resty/ │ └── template.lua ├── demo2/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ └── req.lua ├── demo3/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ └── req.lua ├── demo4/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ ├── redis.lua │ └── req.lua ├── demo5/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ ├── mysql.lua │ └── req.lua ├── demo6/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ └── lua/ │ ├── hello.lua │ └── req.lua ├── demo7/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── html/ │ │ └── index.html │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── hello.lua │ │ ├── local-login.lua │ │ ├── login.lua │ │ └── req.lua │ └── lualib/ │ └── resty/ │ ├── http.lua │ └── http_headers.lua ├── demo8/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── html/ │ │ ├── css/ │ │ │ └── index.css │ │ ├── index.html │ │ └── js/ │ │ └── index.js │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ └── web/ │ │ └── user.lua │ └── lualib/ │ └── lite/ │ ├── mvc.lua │ └── req.lua ├── demo9/ │ ├── README.md │ ├── conf/ │ │ └── nginx.conf │ ├── logs/ │ │ └── .gitignore │ ├── lua/ │ │ ├── mvc.lua │ │ ├── tpl/ │ │ │ └── index.html │ │ └── web/ │ │ └── index.lua │ └── lualib/ │ ├── lite/ │ │ ├── mvc.lua │ │ └── req.lua │ └── resty/ │ └── template.lua └── install/ └── install-openresty.sh