config: Update 3 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s
This commit is contained in:
@@ -8,8 +8,8 @@ SSH_USER="root"
|
|||||||
WEB_PORT=9000 # Graylog web UI
|
WEB_PORT=9000 # Graylog web UI
|
||||||
GELF_UDP_PORT=12201 # GELF UDP input
|
GELF_UDP_PORT=12201 # GELF UDP input
|
||||||
GELF_TCP_PORT=12202 # GELF TCP input
|
GELF_TCP_PORT=12202 # GELF TCP input
|
||||||
SYSLOG_UDP_PORT=1514 # Syslog UDP input
|
SYSLOG_UDP_PORT=514 # Syslog UDP input (external port, maps to 1514 internal)
|
||||||
SYSLOG_TCP_PORT=1515 # Syslog TCP input
|
SYSLOG_TCP_PORT=514 # Syslog TCP input (external port, maps to 1514 internal)
|
||||||
BEATS_PORT=5044 # Beats input
|
BEATS_PORT=5044 # Beats input
|
||||||
|
|
||||||
# Graylog Admin Password (CHANGE THIS!)
|
# Graylog Admin Password (CHANGE THIS!)
|
||||||
|
|||||||
@@ -53,9 +53,9 @@ services:
|
|||||||
# GELF TCP
|
# GELF TCP
|
||||||
- "${GELF_TCP_PORT:-12202}:12202"
|
- "${GELF_TCP_PORT:-12202}:12202"
|
||||||
# Syslog UDP
|
# Syslog UDP
|
||||||
- "${SYSLOG_UDP_PORT:-1514}:1514/udp"
|
- "${SYSLOG_UDP_PORT:-514}:1514/udp"
|
||||||
# Syslog TCP
|
# Syslog TCP
|
||||||
- "${SYSLOG_TCP_PORT:-1515}:1515"
|
- "${SYSLOG_TCP_PORT:-514}:1514"
|
||||||
# Beats
|
# Beats
|
||||||
- "${BEATS_PORT:-5044}:5044"
|
- "${BEATS_PORT:-5044}:5044"
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
@@ -8,6 +8,6 @@ _check_required_env_vars "WEB_PORT" "GELF_UDP_PORT" "GELF_TCP_PORT" "SYSLOG_UDP_
|
|||||||
echo "${WEB_PORT:-9000}"
|
echo "${WEB_PORT:-9000}"
|
||||||
echo "${GELF_UDP_PORT:-12201}"
|
echo "${GELF_UDP_PORT:-12201}"
|
||||||
echo "${GELF_TCP_PORT:-12202}"
|
echo "${GELF_TCP_PORT:-12202}"
|
||||||
echo "${SYSLOG_UDP_PORT:-1514}"
|
echo "${SYSLOG_UDP_PORT:-514}"
|
||||||
echo "${SYSLOG_TCP_PORT:-1515}"
|
echo "${SYSLOG_TCP_PORT:-514}"
|
||||||
echo "${BEATS_PORT:-5044}"
|
echo "${BEATS_PORT:-5044}"
|
||||||
|
|||||||
Reference in New Issue
Block a user