├── LICENSE ├── README.md ├── docker-compose.example.yml ├── docker-compose.tests.yml ├── example ├── haproxy │ └── haproxy.cfg └── web │ ├── Dockerfile │ ├── index.js │ ├── package.json │ └── views │ └── index.html ├── lib └── cors.lua └── tests ├── cors_tests.lua └── luaunit.lua /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /docker-compose.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/docker-compose.tests.yml -------------------------------------------------------------------------------- /example/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/example/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /example/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/example/web/Dockerfile -------------------------------------------------------------------------------- /example/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/example/web/index.js -------------------------------------------------------------------------------- /example/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/example/web/package.json -------------------------------------------------------------------------------- /example/web/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/example/web/views/index.html -------------------------------------------------------------------------------- /lib/cors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/lib/cors.lua -------------------------------------------------------------------------------- /tests/cors_tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/tests/cors_tests.lua -------------------------------------------------------------------------------- /tests/luaunit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-lua-cors/HEAD/tests/luaunit.lua --------------------------------------------------------------------------------