[enh] overwrite secret_key from env with the SEARX_SECRET env var if exists - closes #845

dependabot/pip/master/sphinx-6.1.3
Adam Tauber 7 years ago
parent 9e5b1dfb7c
commit e303339370

@ -87,3 +87,6 @@ if OPENSSL_VERSION_INFO[0:3] < (1, 0, 2):
logger.warning('You are using an old openssl version({0}), please upgrade above 1.0.2!'.format(OPENSSL_VERSION))
logger.info('Initialisation done')
if 'SEARX_SECRET' in environ:
settings['server']['secret_key'] = environ['SEARX_SECRET']

Loading…
Cancel
Save