Skip to content

Commit 99f7613

Browse files
committed
FIX: an opprotunity to set HTTP-header, used by CherryPy to determine origin url of proxy (when HP works behind proxy)
see #rembo10#2616
1 parent cf0068a commit 99f7613

File tree

3 files changed

+30
-9
lines changed

3 files changed

+30
-9
lines changed

Headphones.py

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ def main():
186186
'http_host': headphones.CONFIG.HTTP_HOST,
187187
'http_root': headphones.CONFIG.HTTP_ROOT,
188188
'http_proxy': headphones.CONFIG.HTTP_PROXY,
189+
'http_proxy_header_host': headphones.CONFIG.HTTP_PROXY_HEADER_HOST,
189190
'enable_https': headphones.CONFIG.ENABLE_HTTPS,
190191
'https_cert': headphones.CONFIG.HTTPS_CERT,
191192
'https_key': headphones.CONFIG.HTTPS_KEY,

headphones/config/definitions/advanced.py

+22-9
Original file line numberDiff line numberDiff line change
@@ -434,18 +434,31 @@ def reg(_extend_cb):
434434
# =======================================================================================
435435
opts.extend([
436436
BlockExtension('advanced_http_paths', caption=_("Advanced HTTP"), options=_extend_cb(
437-
OptionBool('HTTP_PROXY', 'General', False,
438-
label=_('Behind proxy'),
439-
caption=_('Headphones works behind proxy, and should be careful with generated urls'),
440-
),
441-
OptionString('HTTP_ROOT', 'General', '/',
442-
label=_('HTTP root'),
443-
caption=_('The base part of the URL, without hostname. Just path to home-page of HP.'),
444-
),
437+
OptionSwitch('HTTP_PROXY', 'General', False,
438+
label=_('Behind proxy'),
439+
caption=_('Headphones works behind proxy, HP will modify url appropriately'),
440+
options=_extend_cb(
441+
OptionDropdown('HTTP_PROXY_HEADER_HOST', 'General', '', initype=str,
442+
label=_('HTTP header with external hostname'),
443+
tooltip=_('The name of HTTP header, which will be used by'
444+
' CherryPy.tool.proxy.local to determine the external proxy name'),
445+
caption=_('For example, Apache uses "X-Forwarded-Host"'),
446+
items=(
447+
('', _('Default behaviour')),
448+
('X-Forwarded-Host', _('Apache [X-Forwarded-Host]')),
449+
('X-Host', _('Lighttpd [X-Host]')),
450+
('Host', _('Nginx [Host]')),
451+
)
452+
),
453+
),
454+
),
455+
OptionString('HTTP_ROOT', 'General', '/',
456+
label=_('HTTP root'),
457+
caption=_('The base part of the URL, without hostname. Just path to home-page of HP.'),
458+
),
445459
)),
446460
])
447461

448-
449462
opts.extend([
450463
BlockExtension('advanced_forgotten', caption=_("Strange hidden options"), options=_extend_cb(
451464
MessageExtension(

headphones/webstart.py

+7
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ def initialize(options):
111111
})
112112
conf['/api'] = {'tools.auth_basic.on': False}
113113

114+
if options['http_proxy'] and options['http_proxy_header_host']:
115+
logger.info("Work behind proxy enabled, and usage of specific HTTP-header"
116+
" is forced: '%s'", options['http_proxy_header_host'])
117+
conf['/'].update({
118+
'tools.proxy.local': options['http_proxy_header_host'],
119+
})
120+
114121
# Prevent time-outs
115122
cherrypy.engine.timeout_monitor.unsubscribe()
116123
cherrypy.tree.mount(WebInterface(), str(options['http_root']), config=conf)

0 commit comments

Comments
 (0)