-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.yml.sample
93 lines (91 loc) · 2.45 KB
/
db.yml.sample
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
versions:
traefik: v3
crowdsec: v1.6.0
plugins:
crowdsec:
enabled: false
version: v1.2.0
apikey: ''
options:
logLevel: INFO
updateIntervalSeconds: 60
defaultDecisionSeconds: 60
httpTimeoutSeconds: 10
crowdsecCapiMachineId: login
crowdsecCapiPassword: password
crowdsecCapiScenarios:
- crowdsecurity/http-path-traversal-probing
- crowdsecurity/http-xss-probing
- crowdsecurity/http-generic-bf
projects:
- description: Home Assistant passthrough
enabled: false
name: home-assistant # keep this name as it also makes sure to forward port 80 for certbot
services:
- host: 192.168.1.111
ingress:
- domain: home.example.com
passthrough: true
port: 443
router: tcp
- description: Home Assistant http passthrough for letsencrypt
enabled: false
name: home-assistant-challenge
services:
- host: 192.168.1.111
ingress:
- domain: home.example.com
passthrough: true
path_prefix: /.well-known/acme-challenge/
port: 80
- description: itsUP API running on the host
name: itsUP
services:
- host: 172.17.0.1 # change this to host.docker.internal when on Docker Desktop
ingress:
- domain: itsup.example.com
port: 8888
- description: Minio service
enabled: false
name: minio
services:
- command: server --console-address ":9001" /data
env:
MINIO_ROOT_USER: root
MINIO_ROOT_PASSWORD: xx
host: app
image: minio/minio:latest
ingress:
- domain: minio-api.example.com
port: 9000
router: tcp
- domain: minio-ui.example.com
port: 9001
volumes:
- /data
- description: VPN server
enabled: false
name: vpn
services:
- additional_properties:
cap_add:
- NET_ADMIN
# change tag to x86_64 if not on ARM:
host: openvpn
image: nubacuk/docker-openvpn:aarch64
ingress:
- domain: vpn.example.com
hostport: 1194
port: 1194
protocol: udp
router: udp
restart: always
volumes:
- /etc/openvpn
- description: whoami service
name: whoami
services:
- host: web
image: traefik/whoami:latest
ingress:
- domain: whoami.example.com