summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/__init__.py b/searx/__init__.py
index a57588cd3..9cb832266 100644
--- a/searx/__init__.py
+++ b/searx/__init__.py
@@ -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']