From 141b04c6dde9df0e6b7f2e2b30ec8131429c8932 Mon Sep 17 00:00:00 2001 From: asciimoo Date: Thu, 26 Dec 2013 01:53:26 +0100 Subject: [enh] optionally configurable hostname - edit settings.py --- searx/webapp.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'searx/webapp.py') diff --git a/searx/webapp.py b/searx/webapp.py index bbc151a5d..6ac0046f1 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -165,7 +165,11 @@ def opensearch(): method = 'get' if request.is_secure: scheme = 'https' - ret = opensearch_xml.format(method=method, host=url_for('index', _external=True, _scheme=scheme)) + if settings.hostname: + hostname = '{0}://{1}/'.format(scheme,settings.hostname) + else: + hostname = url_for('index', _external=True, _scheme=scheme) + ret = opensearch_xml.format(method=method, host=hostname) resp = Response(response=ret, status=200, mimetype="application/xml") -- cgit v1.2.3