diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2019-06-30 13:45:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-30 13:45:09 +0200 |
| commit | 6c750528749afcfd878347df78ccd45aaf8afcd6 (patch) | |
| tree | 6d345fd9d6537dc712d2d7b705e62af50e242332 /searx/__init__.py | |
| parent | 06979fa0829697ed3b0b1946a2ef7b43f308e2c4 (diff) | |
| parent | 4c768f9fe6e43936d3f06ad619a45fe07fa8bebf (diff) | |
Merge branch 'master' into ne/improve-infinite-scroll
Diffstat (limited to 'searx/__init__.py')
| -rw-r--r-- | searx/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/__init__.py b/searx/__init__.py index 4d7b2a8d3..d32fe0066 100644 --- a/searx/__init__.py +++ b/searx/__init__.py @@ -91,3 +91,5 @@ logger.info('Initialisation done') if 'SEARX_SECRET' in environ: settings['server']['secret_key'] = environ['SEARX_SECRET'] +if 'SEARX_BIND_ADDRESS' in environ: + settings['server']['bind_address'] = environ['SEARX_BIND_ADDRESS'] |