bundlewrap/nodes/gce/bind01.py
Franzi c5fc67660a
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit
nodes/gce.bind01: add nginx for powerdnsadmin
2020-10-16 20:25:17 +02:00

42 lines
868 B
Python

# ns-1.kunbox.net
# Frankfurt, Germany
nodes['gce.bind01'] = {
'bundles': {
'nodejs',
'powerdnsadmin',
},
'groups': {
'dns',
'webserver',
},
'metadata': {
'interfaces': {
'eth0': {
'ipv4': {
'10.156.0.4',
},
'gateway4': '10.156.0.1',
},
},
'external_ipv4': '34.89.208.78',
'nginx': {
'vhosts': {
'ns-1.kunbox.net': {
'proxy': {
'/': {
'target': 'http://127.0.0.1:8000/',
},
},
},
},
},
'vm': {
'cpu': 1,
'ram': 1,
},
},
'os': 'debian',
'os_version': (10,),
}