-
Notifications
You must be signed in to change notification settings - Fork 0
/
tunnel_layout.kdl
57 lines (50 loc) · 1.6 KB
/
tunnel_layout.kdl
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
layout {
default_tab_template {
// the default zellij tab-bar and status bar plugins
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
children
pane size=2 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="DERP" {
pane {
command "derper"
args "-c" "./tmp/derper-a.json" "-a" ":443" "-certmode" "manual" "-certdir" "./tmp/certs" "-hostname" "derp-a" "-mesh-psk-file" "./examples/mesh.psk" "-mesh-with" "derp-a:443,derp-b:8443,derp-c:9443" "-stun-port" "3478" "-http-port" "80"
}
pane {
command "derper"
args "-c" "./tmp/derper-b.json" "-a" ":8443" "-certmode" "manual" "-certdir" "./tmp/certs" "-hostname" "derp-b" "-mesh-psk-file" "./examples/mesh.psk" "-mesh-with" "derp-a:443,derp-b:8443,derp-c:9443" "-stun-port" "3479" "-http-port" "-1"
}
pane {
command "derper"
args "-c" "./tmp/derper-c.json" "-a" ":9443" "-certmode" "manual" "-certdir" "./tmp/certs" "-hostname" "derp-c" "-mesh-psk-file" "./examples/mesh.psk" "-mesh-with" "derp-a:443,derp-b:8443,derp-c:9443" "-stun-port" "3480" "-http-port" "-1"
}
}
tab name="Coordinator" split_direction="vertical" {
pane {
name "Server"
command "air"
cwd "."
}
pane {
pane {
name "tsnet example"
cwd "examples/tsnet"
}
// pane {
// name "Tailscaled"
// command "bash"
// args "-c" " TS_DEBUG_USE_DERP_HTTP=true sudo -E tailscaled"
// focus true
// }
pane {
name "Tunnel"
cwd "."
focus true
}
}
}
}