fix LUA array variables and add LOG_LEVEL to the troubleshooting section
This commit is contained in:
@@ -26,23 +26,23 @@ local use_antibot_captcha = %USE_ANTIBOT_CAPTCHA%
|
||||
local use_antibot_recaptcha = %USE_ANTIBOT_RECAPTCHA%
|
||||
|
||||
-- resolvers
|
||||
local dns_resolvers = %DNS_RESOLVERS%
|
||||
local dns_resolvers = {%DNS_RESOLVERS%}
|
||||
|
||||
-- whitelist
|
||||
local use_whitelist_ip = %USE_WHITELIST_IP%
|
||||
local use_whitelist_reverse = %USE_WHITELIST_REVERSE%
|
||||
local whitelist_ip_list = %WHITELIST_IP_LIST%
|
||||
local whitelist_reverse_list = %WHITELIST_REVERSE_LIST%
|
||||
local whitelist_ip_list = {%WHITELIST_IP_LIST%}
|
||||
local whitelist_reverse_list = {%WHITELIST_REVERSE_LIST%}
|
||||
|
||||
-- blacklist
|
||||
local use_blacklist_ip = %USE_BLACKLIST_IP%
|
||||
local use_blacklist_reverse = %USE_BLACKLIST_REVERSE%
|
||||
local blacklist_ip_list = %BLACKLIST_IP_LIST%
|
||||
local blacklist_reverse_list = %BLACKLIST_REVERSE_LIST%
|
||||
local blacklist_ip_list = {%BLACKLIST_IP_LIST%}
|
||||
local blacklist_reverse_list = {%BLACKLIST_REVERSE_LIST%}
|
||||
|
||||
-- dnsbl
|
||||
local use_dnsbl = %USE_DNSBL%
|
||||
local dnsbl_list = %DNSBL_LIST%
|
||||
local dnsbl_list = {%DNSBL_LIST%}
|
||||
|
||||
-- bad behavior
|
||||
local use_bad_behavior = %USE_BAD_BEHAVIOR%
|
||||
|
||||
Reference in New Issue
Block a user