changed loglevel form debug to error

This commit is contained in:
Siam Mridha
2026-02-28 07:57:02 -05:00
parent 915d94c062
commit c500599355
2 changed files with 8 additions and 8 deletions

View File

@@ -50,7 +50,7 @@ services:
- LEGO_CA_CERTIFICATES=/certs/root_ca.crt
command:
# Logging
- --log.level=DEBUG
- --log.level=ERROR
# Docker provider
- --providers.docker=true
@@ -98,7 +98,7 @@ services:
logging:
driver: "json-file"
options:
max-size: "500m"
max-size: "10m"
max-file: "2"
# Signal — netbird.<DOMAIN>:4478 (routed by path)
@@ -134,7 +134,7 @@ services:
logging:
driver: "json-file"
options:
max-size: "500m"
max-size: "10m"
max-file: "2"
# Relay (includes embedded STUN server) — netbird.<DOMAIN>:4478 (routed by path)
@@ -165,7 +165,7 @@ services:
logging:
driver: "json-file"
options:
max-size: "500m"
max-size: "10m"
max-file: "2"
# Management (includes embedded IdP) — netbird.<DOMAIN>:4478 (routed by path)
@@ -185,7 +185,7 @@ services:
command: [
"--port", "80",
"--log-file", "console",
"--log-level", "info",
"--log-level", "error",
"--disable-anonymous-metrics=false",
"--single-account-mode-domain=netbird.selfhosted",
"--dns-domain=netbird.selfhosted",
@@ -229,7 +229,7 @@ services:
logging:
driver: "json-file"
options:
max-size: "500m"
max-size: "10m"
max-file: "2"
volumes:

View File

@@ -1,9 +1,9 @@
NB_LOG_LEVEL=info
NB_LOG_LEVEL=error
NB_LISTEN_ADDRESS=:80
# Public address clients connect to — Traefik maps 4478/udp → internal :3478
NB_EXPOSED_ADDRESS=rels://netbird.<DOMAIN>:4478
NB_AUTH_SECRET=<NB_AUTH_SECRET>
NB_ENABLE_STUN=true
NB_STUN_LOG_LEVEL=info
NB_STUN_LOG_LEVEL=error
# Internal STUN port (Traefik UDP entrypoint forwards 4478 → 3478)
NB_STUN_PORTS=3478