mirror of https://github.com/telemt/telemt.git
Merge 490a52eb87 into 2d3c2807ab
This commit is contained in:
commit
d1f0af8fb9
|
|
@ -39,6 +39,8 @@ port = 443
|
|||
enabled = true
|
||||
listen = "0.0.0.0:9091"
|
||||
whitelist = ["127.0.0.0/8"]
|
||||
# Allow API access from Docker bridge subnets
|
||||
# whitelist = ["127.0.0.0/8", "172.16.0.0/12"]
|
||||
minimal_runtime_enabled = false
|
||||
minimal_runtime_cache_ttl_ms = 1000
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ services:
|
|||
restart: unless-stopped
|
||||
ports:
|
||||
- "443:443"
|
||||
- "127.0.0.1:9090:9090"
|
||||
- "127.0.0.1:9091:9091"
|
||||
- "127.0.0.1:9090:9090" # Metrics
|
||||
- "127.0.0.1:9091:9091" # API
|
||||
# Allow caching 'proxy-secret' in read-only container
|
||||
working_dir: /run/telemt
|
||||
volumes:
|
||||
|
|
@ -29,3 +29,8 @@ services:
|
|||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
|
|
|||
Loading…
Reference in New Issue