我在我的 nginx 服务器中使用 Lua Nginx模块。
我有一个init_worker_by_lua_file
在 nginx.conf 中执行的 Lua 脚本,因此该脚本将在 nginx 启动和重新启动时执行。Lua 脚本的作用是,它向某个服务器请求 rest api 并检索响应。
在这种情况下,我使用 curl 来访问 api,有什么办法不使用 curl?
我已经尝试过ngx.location.capture
,ngx.exec
但那些不适合init_worker_by_lua_file