@@ -434,18 +434,31 @@ def reg(_extend_cb):
434
434
# =======================================================================================
435
435
opts .extend ([
436
436
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
+ ),
445
459
)),
446
460
])
447
461
448
-
449
462
opts .extend ([
450
463
BlockExtension ('advanced_forgotten' , caption = _ ("Strange hidden options" ), options = _extend_cb (
451
464
MessageExtension (
0 commit comments