lua-resty-http
lua-resty-http copied to clipboard
Lua HTTP client driver for ngx_lua
Results
2
lua-resty-http issues
Sort by
recently updated
recently updated
newest added
Does this thing support HTTPS? I'm using it now and it seems not to, even though there is logic to change the port based on URI scheme. I am assuming...
Hi, my code is the following: ``` local http = require "resty.http" local client = http:new() client:set_timeout(3000) local ok, err = client:connect("127.0.0.1", 9999) if not ok then ngx.say(err) return end...