├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── example.nginx.conf ├── src └── stormpath-nginx.lua ├── stormpath-nginx-1.0.2-0.rockspec └── t ├── 000-prerequisites.t ├── 001-getaccount.t └── 002-requireaccount.t /.gitignore: -------------------------------------------------------------------------------- 1 | t/servroot 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/README.md -------------------------------------------------------------------------------- /example.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/example.nginx.conf -------------------------------------------------------------------------------- /src/stormpath-nginx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/src/stormpath-nginx.lua -------------------------------------------------------------------------------- /stormpath-nginx-1.0.2-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/stormpath-nginx-1.0.2-0.rockspec -------------------------------------------------------------------------------- /t/000-prerequisites.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/t/000-prerequisites.t -------------------------------------------------------------------------------- /t/001-getaccount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/t/001-getaccount.t -------------------------------------------------------------------------------- /t/002-requireaccount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-nginx/HEAD/t/002-requireaccount.t --------------------------------------------------------------------------------