
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 40s
20 lines
435 B
Bash
20 lines
435 B
Bash
# Log Server Configuration (Loki + Grafana)
|
|
CONTAINER_NAME=logserver
|
|
|
|
# Server settings (REQUIRED by dropshell)
|
|
SSH_USER="root"
|
|
|
|
# Ports
|
|
WEB_PORT=3000 # Grafana web UI
|
|
LOKI_PORT=3100 # Loki API (for clients to send logs)
|
|
|
|
# Authentication for Grafana
|
|
ADMIN_USER=admin
|
|
ADMIN_PASSWORD=changeme
|
|
|
|
# Authentication for Loki (clients must use these)
|
|
LOKI_USER=logclient
|
|
LOKI_PASSWORD=changeme
|
|
|
|
# Log retention (days)
|
|
LOG_RETENTION=7 |