소스 검색

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

Adam Tauber 7 년 전
부모
커밋
e303339370
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      searx/__init__.py

+ 3
- 0
searx/__init__.py 파일 보기

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