├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── dist.ini ├── lib └── resty │ └── cors.lua ├── lua-resty-cors-0.2-1.rockspec └── t └── cors.t /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/README.md -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/resty/cors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/lib/resty/cors.lua -------------------------------------------------------------------------------- /lua-resty-cors-0.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/lua-resty-cors-0.2-1.rockspec -------------------------------------------------------------------------------- /t/cors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/detailyang/lua-resty-cors/HEAD/t/cors.t --------------------------------------------------------------------------------