├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.markdown ├── Rakefile ├── benchmark ├── nginx.conf └── vs_proxy.rb ├── lib └── resty │ └── http.lua └── spec ├── http_spec.rb ├── nginx.conf └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | spec/resty/ 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/benchmark/nginx.conf -------------------------------------------------------------------------------- /benchmark/vs_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/benchmark/vs_proxy.rb -------------------------------------------------------------------------------- /lib/resty/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/lib/resty/http.lua -------------------------------------------------------------------------------- /spec/http_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/spec/http_spec.rb -------------------------------------------------------------------------------- /spec/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/spec/nginx.conf -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsm/lua-resty-http/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------