22 lines
533 B
Python
22 lines
533 B
Python
# Add-On for pretalx vm hosted at c3voc.
|
|
# c3voc ansible only takes care of the basic things, this node only
|
|
# does the things ansible does *not* do.
|
|
|
|
nodes['voc.pretalx'] = {
|
|
'hostname': 'pretalx.c3voc.de',
|
|
'bundles': {
|
|
'c3voc-addons',
|
|
# 'pretalx',
|
|
'postgresql',
|
|
},
|
|
'metadata': {
|
|
'nginx': {
|
|
'vhosts': {
|
|
'pretalx': {
|
|
'domain': 'pretalx.c3voc.de',
|
|
# 'extras': True,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|