local starttime = os.time()
local connected = false
while not connected and os.difftime(os.time(), starttime) < 5 do
- local con = socket.connect("localhost", 8053)
+ local con = socket.connect("localhost", 8080)
connected, msg = pcall(con.connect, con, 5)
cqueues.sleep (0.3)
end
assert(connected, string.format('unable to connect to web server: %s', msg))
end
-local host = 'https://localhost:8053/'
+local host = 'https://localhost:8080/'
-- avoid interference with configured KEYFILE_DEFAULT
trust_anchors.keyfile_default = nil