-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
45 lines (38 loc) · 1.26 KB
/
Copy pathconfig.yaml
File metadata and controls
45 lines (38 loc) · 1.26 KB
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
# TLS Demo Server Configuration (#7)
server:
host: "0.0.0.0"
port: 6767
cert_file: "server.crt"
key_file: "server.key"
ca_file: "ca.crt"
require_client_cert: false
auth:
token: "changeme-token-1234"
dashboard:
port: 8080
heartbeat:
interval: 30 # seconds between auto ping/pong (#1)
timeout: 10 # seconds to wait for pong before dropping
protocol:
compression: true # zlib compress frames > threshold (#12)
compress_threshold: 512 # bytes
logging:
level: "DEBUG"
file: "server.log"
reconnect: # client-side backoff config (#13)
initial_delay: 1.0
max_delay: 60.0
multiplier: 2.0
jitter: 0.3
# ── Portmap.io Global Access ──────────────────────────────────────────────────
# Get your API key from https://portmap.io/configurations/new
# Free tier gives you a public TCP endpoint on portmap.io:<remote_port>
# Clients on other networks connect to: portmap.io:<remote_port>
tunnel:
enabled: true
key_file: "C:/Users/umesh/.ssh/johnthehecker143_rsa.pem"
username: "johnthehecker143.first"
remote_host: "johnthehecker143-47209.portmap.host"
remote_port: 47209
local_port: 6767
restart_delay: 10