blob: 3333bc0043639200ce770fd7d2829490969bd0f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
---
nextcloud_zfs:
pool: storage
name: nextcloud
properties:
compression: lz4
nextcloud_instances:
wolke.elevate.at:
# new: true
version: 25.0.3
port: 8100
hostnames:
- wolke.elevate.at
zfs_properties:
quota: 400G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['wolke.elevate.at'] }}"
insomnia.skillz.biz:
# new: true
version: 25.0.3
port: 8101
hostnames:
- insomnia.skillz.biz
zfs_properties:
quota: 300G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['insomnia.skillz.biz'] }}"
nc.skillz.biz:
# new: true
version: 25.0.3
port: 8102
hostnames:
- nc.skillz.biz
zfs_properties:
quota: 200G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['nc.skillz.biz'] }}"
wae.elevate.at:
# new: true
version: 25.0.3
port: 8104
hostnames:
- wae.elevate.at
zfs_properties:
quota: 100G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['wae.elevate.at'] }}"
wolke.elev8.at:
# new: true
version: 21.0.1
port: 8105
hostnames:
- wolke.elev8.at
zfs_properties:
quota: 10G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['wolke.elev8.at'] }}"
|