Files
j 0c47dc47e5
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s
config: Update 3 files
2026-01-27 18:41:18 +13:00

29 lines
906 B
Bash

# Graylog Configuration
CONTAINER_NAME=graylog
# Server settings (REQUIRED by dropshell)
SSH_USER="root"
# Ports
WEB_PORT=9000 # Graylog web UI
GELF_UDP_PORT=12201 # GELF UDP input
GELF_TCP_PORT=12202 # GELF TCP input
SYSLOG_UDP_PORT=514 # Syslog UDP input (external port, maps to 1514 internal)
SYSLOG_TCP_PORT=514 # Syslog TCP input (external port, maps to 1514 internal)
BEATS_PORT=5044 # Beats input
# Graylog Admin Password (CHANGE THIS!)
# Generate a new secret with: pwgen -N 1 -s 96
GRAYLOG_PASSWORD_SECRET="somepasswordpepper"
# Admin password (plain text - converted to SHA256 during install)
GRAYLOG_ROOT_PASSWORD="admin"
# Graylog settings
GRAYLOG_HTTP_EXTERNAL_URI="http://localhost:9000/"
GRAYLOG_TIMEZONE="UTC"
# OpenSearch/Elasticsearch settings
OPENSEARCH_JAVA_OPTS="-Xms1g -Xmx1g"
# MongoDB settings (no authentication by default for internal use)