-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathzilla.yaml
54 lines (54 loc) · 985 Bytes
/
zilla.yaml
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
---
name: example
vaults:
my_servers:
type: filesystem
options:
keys:
store: tls/localhost.p12
type: pkcs12
password: ${{env.KEYSTORE_PASSWORD}}
bindings:
north_tcp_server:
type: tcp
kind: server
options:
host: 0.0.0.0
port:
- 7172
- 7171
routes:
- when:
- port: 7172
exit: north_amqp_server
- when:
- port: 7171
exit: north_tls_server
north_tls_server:
type: tls
kind: server
vault: my_servers
options:
keys:
- localhost
sni:
- localhost
exit: north_amqp_server
north_amqp_server:
type: amqp
kind: server
routes:
- when:
- address: zilla
exit: north_fan_server
north_fan_server:
type: fan
kind: server
exit: north_echo_server
north_echo_server:
type: echo
kind: server
telemetry:
exporters:
stdout_logs_exporter:
type: stdout