Dmitriy
Dmitriy
Thank you, I'll try to do as you said. But for now, I'm facing an error while configuring openresty with this module: ./configure: error: no /var/chef/cache/lua-resty-upstream/config was found I just...
Great thank you, my bad. Now, I'm using a config like next: nginx.conf: ``` lua_package_path "/var/www/lua-resty-upstream/lib/?.lua;/usr/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?.lua;;"; lua_shared_dict upstream_dict 1m; init_by_lua_file /var/www/app/upstream.lua; init_worker_by_lua 'upstream:init_background_thread()'; server { } ``` upstream.lua: ``` upstream_socket...
Thanks for a suggestion, man. I set it to 1000, and the error is the same. How can I set debug level of the Lua logs (I'm a newbie in...