Added SSL Certificate Verification Options

Added SSL Certificate Verification Options
This commit is contained in:
swatcats
2024-03-02 16:34:51 -05:00
parent c68a083e97
commit 0ff9d53e43
4 changed files with 21 additions and 9 deletions

View File

@@ -80,6 +80,7 @@ config.read(config_file_full_path)
# General
LOG_LEVEL = get_config_value('LOG_LEVEL', 'general', False, str, 'INFO')
TEST_RUN = get_config_value('TEST_RUN', 'general', False, bool, False)
SSL_VERIFICATION = get_config_value('SSL_VERIFICATION', 'general', False, bool, True)
# Features
REMOVE_TIMER = get_config_value('REMOVE_TIMER', 'features', False, float, 10)