2021-01-16 19:57:33 +00:00
|
|
|
# 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',
|
2021-01-16 21:04:03 +00:00
|
|
|
'pretalx',
|
2021-01-17 06:36:57 +00:00
|
|
|
'postfix',
|
2021-01-16 19:57:33 +00:00
|
|
|
'postgresql',
|
2021-01-29 14:58:54 +00:00
|
|
|
'redis',
|
2021-01-16 21:14:34 +00:00
|
|
|
'sshmon',
|
2021-01-16 19:57:33 +00:00
|
|
|
},
|
|
|
|
'metadata': {
|
2021-02-12 17:53:34 +00:00
|
|
|
'apt': {
|
|
|
|
# Move patchday to somewhere where the possibility of
|
|
|
|
# clashing with actual events is less likely.
|
|
|
|
'unattended_upgrades': {
|
|
|
|
'day': 1,
|
|
|
|
},
|
|
|
|
},
|
2021-01-17 06:37:19 +00:00
|
|
|
'interfaces': {
|
|
|
|
'default': {
|
|
|
|
'ips': {
|
|
|
|
'31.172.33.105/28',
|
|
|
|
'2a01:a700:48d1::105/64',
|
|
|
|
},
|
|
|
|
'gateway4': '31.172.33.110',
|
|
|
|
'gateway6': '2a01:a700:48d1::1',
|
|
|
|
},
|
|
|
|
},
|
2021-04-10 13:05:29 +00:00
|
|
|
'icinga_options': {
|
|
|
|
'pretty_name': 'pretalx.c3voc.de',
|
|
|
|
},
|
2021-01-16 19:57:33 +00:00
|
|
|
'nginx': {
|
|
|
|
'vhosts': {
|
|
|
|
'pretalx': {
|
|
|
|
'domain': 'pretalx.c3voc.de',
|
2021-03-30 19:26:25 +00:00
|
|
|
# pretalx limits this to 10M per file, too
|
|
|
|
'max_body_size': '100M',
|
2021-01-16 21:04:03 +00:00
|
|
|
'extras': True,
|
2021-01-17 07:07:21 +00:00
|
|
|
'website_check_path': '/orga/login/',
|
2021-03-21 11:59:08 +00:00
|
|
|
'website_check_string': ':: pretalx',
|
2021-01-16 19:57:33 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-01-16 21:04:03 +00:00
|
|
|
'pretalx': {
|
|
|
|
'version': 'v2.1.1',
|
|
|
|
'domain': 'pretalx.c3voc.de',
|
|
|
|
'mail_from': 'pretalx@c3voc.de',
|
2021-03-30 17:52:31 +00:00
|
|
|
'plugins': {
|
|
|
|
'downstream': {
|
|
|
|
'repo': 'https://github.com/pretalx/pretalx-downstream.git',
|
|
|
|
},
|
|
|
|
'media.ccc.de': {
|
|
|
|
'repo': 'https://github.com/pretalx/pretalx-media-ccc-de.git',
|
|
|
|
},
|
|
|
|
},
|
2021-01-16 21:04:03 +00:00
|
|
|
},
|
2021-01-17 06:36:57 +00:00
|
|
|
'postfix': {
|
|
|
|
'myhostname': 'pretalx.c3voc.de',
|
|
|
|
'relayhost': 'mng.c3voc.de',
|
|
|
|
},
|
2021-01-16 19:57:33 +00:00
|
|
|
},
|
2021-01-23 10:33:04 +00:00
|
|
|
'os': 'debian',
|
2021-05-23 12:54:24 +00:00
|
|
|
'os_version': (10,),
|
|
|
|
'pip_command': 'pip3',
|
2021-01-16 19:57:33 +00:00
|
|
|
}
|