bundles/nginx: proxy is a dict now, add some more configuration options
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
d1672a9a45
commit
7ea85247e0
4 changed files with 39 additions and 10 deletions
|
@ -19,8 +19,15 @@ nodes['home.octoprint-vielschichtigkeit'] = {
|
|||
'use_ssl_for_all_connections': False,
|
||||
'vhosts': {
|
||||
'vielschichtigkeit.franzi-home.kunbox.net': {
|
||||
'do_not_set_content_security_headers': True,
|
||||
'proxy': {
|
||||
'/': 'http://[::1]:22030/',
|
||||
'/': {
|
||||
'target': 'http://[::1]:22030/',
|
||||
'websockets': True,
|
||||
'proxy_set_header': {
|
||||
'X-Real-IP': '$remote_addr',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -171,7 +171,9 @@ nodes['htz.ex42-1048908'] = {
|
|||
'extras': True,
|
||||
'do_not_set_content_security_headers': True,
|
||||
'proxy': {
|
||||
'/': 'http://127.0.0.1:8184',
|
||||
'/': {
|
||||
'target': 'http://127.0.0.1:8184',
|
||||
},
|
||||
},
|
||||
},
|
||||
'franzi.business': {
|
||||
|
@ -180,7 +182,9 @@ nodes['htz.ex42-1048908'] = {
|
|||
},
|
||||
'jenkins.kunsmann.eu': {
|
||||
'proxy': {
|
||||
'/': 'http://localhost:22010/',
|
||||
'/': {
|
||||
'target': 'http://localhost:22010/',
|
||||
},
|
||||
},
|
||||
},
|
||||
'kunbox.net': {},
|
||||
|
@ -203,17 +207,23 @@ nodes['htz.ex42-1048908'] = {
|
|||
},
|
||||
'rspamd.mx0.kunbox.net': {
|
||||
'proxy': {
|
||||
'/': 'http://localhost:11334/',
|
||||
'/': {
|
||||
'target': 'http://localhost:11334/',
|
||||
},
|
||||
},
|
||||
},
|
||||
'rss.kunsmann.eu': {
|
||||
'proxy': {
|
||||
'/': 'http://localhost:8080/',
|
||||
'/': {
|
||||
'target': 'http://localhost:8080/',
|
||||
},
|
||||
},
|
||||
},
|
||||
'travelynx.franzi.business': {
|
||||
'proxy': {
|
||||
'/': 'http://127.0.0.1:22020',
|
||||
'/': {
|
||||
'target': 'http://127.0.0.1:22020',
|
||||
},
|
||||
},
|
||||
'extras': True,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue