We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8495f1 commit 3f90e15Copy full SHA for 3f90e15
templates/etc/nginx/router.conf.mustache
@@ -37,6 +37,10 @@ http {
37
lua_package_path '{{_package_path}}';
38
lua_package_cpath '{{_package_cpath}}';
39
40
+ # Quiet the raw socket errors from the logs, since we should be handling any
41
+ # connection errors as appropriate in the Lua code.
42
+ lua_socket_log_errors off;
43
+
44
lua_shared_dict active_config {{nginx.shared_dicts.active_config.size}};
45
lua_shared_dict api_users {{nginx.shared_dicts.api_users.size}};
46
lua_shared_dict dns_cache {{nginx.shared_dicts.dns_cache.size}};
0 commit comments