本文整理匯總了Python中amplify.agent.objects.nginx.config.config.NginxConfig.run_ssl_analysis方法的典型用法代碼示例。如果您正苦於以下問題:Python NginxConfig.run_ssl_analysis方法的具體用法?Python NginxConfig.run_ssl_analysis怎麽用?Python NginxConfig.run_ssl_analysis使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類amplify.agent.objects.nginx.config.config.NginxConfig
的用法示例。
在下文中一共展示了NginxConfig.run_ssl_analysis方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_ssl
# 需要導入模塊: from amplify.agent.objects.nginx.config.config import NginxConfig [as 別名]
# 或者: from amplify.agent.objects.nginx.config.config.NginxConfig import run_ssl_analysis [as 別名]
def test_ssl(self):
config = NginxConfig(ssl_simple_config)
config.full_parse()
config.run_ssl_analysis()
ssl_certificates = config.ssl_certificates
assert_that(ssl_certificates, has_length(1))
# check contents
assert_that(ssl_certificates.keys()[0], ends_with('certs.d/example.com.crt'))
assert_that(ssl_certificates.values()[0], has_item('names'))
示例2: collect
# 需要導入模塊: from amplify.agent.objects.nginx.config.config import NginxConfig [as 別名]
# 或者: from amplify.agent.objects.nginx.config.config.NginxConfig import run_ssl_analysis [as 別名]
def collect(self):
try:
config = NginxConfig(
self.object.conf_path,
binary=self.object.bin_path,
prefix=self.object.prefix
)
# check if config is changed (changes are: new files/certs, new mtimes)
config_files, config_dirs = config.collect_structure(include_ssl_certs=self.object.upload_ssl)
if config_files == self.previous_files and config_dirs == self.previous_directories:
return
# parse config tree
config.full_parse()
# Send event for parsing nginx config.
# Use config.parser.filename to account for default value defined in NginxConfigParser.
self.object.eventd.event(
level=INFO,
message='nginx config parsed, read from %s' % config.filename,
)
for error in config.parser_errors:
self.object.eventd.event(level=WARNING, message=error)
# run ssl checks
if self.object.upload_ssl:
config.run_ssl_analysis()
else:
context.log.info('ssl analysis skipped due to users settings')
# run upload
checksum = config.checksum()
if self.object.upload_config:
self.upload(config, checksum)
if self.previous_checksum:
# config changed, so we need to restart the object
self.object.need_restart = True
else:
# otherwise run test
if self.object.run_config_test and config.total_size() < 20*1024*1024: # 20 MB
run_time = config.run_test()
# send event for testing nginx config
if config.test_errors:
self.object.eventd.event(level=WARNING, message='nginx config test failed')
else:
self.object.eventd.event(level=INFO, message='nginx config tested ok')
for error in config.test_errors:
self.object.eventd.event(level=CRITICAL, message=error)
# stop -t if it took too long
if run_time > context.app_config['containers']['nginx']['max_test_duration']:
context.app_config['containers']['nginx']['run_test'] = False
context.app_config.mark_unchangeable('run_test')
self.object.eventd.event(
level=WARNING,
message='%s -t -c %s took %s seconds, disabled until agent restart' % (
config.binary, config.filename, run_time
)
)
self.object.run_config_test = False
self.previous_checksum = checksum
self.previous_files = copy.copy(config_files)
self.previous_directories = copy.copy(config_dirs)
except Exception as e:
exception_name = e.__class__.__name__
context.log.error('failed to collect due to %s' % exception_name)
context.log.debug('additional info:', exc_info=True)
self.object.eventd.event(
level=INFO,
message='nginx config parser failed, path %s' % self.object.conf_path,
onetime=True
)