29 lines
1.6 KiB
Bash
29 lines
1.6 KiB
Bash
# You MUST set a secret to secure/pepper the stored user passwords here. Use at least 64 characters.
|
|
# Generate one by using for example: pwgen -N 1 -s 96
|
|
# ATTENTION: This value must be the same on all Graylog nodes in the cluster.
|
|
# Changing this value after installation will render all user sessions and encrypted values in the database invalid. (e.g. encrypted access tokens)
|
|
GRAYLOG_PASSWORD_SECRET="Xsb2uFwnRYMRfkCDl6IkGVyanZwWbjX3FzMvzpmZj0uOgyxft05nmmiBfX01Sa1rwlprqmVqElxd7borhzkmUoHJbmqD0Ecb"
|
|
|
|
# You MUST specify a hash password for the root user (which you only need to initially set up the
|
|
# system and in case you lose connectivity to your authentication backend)
|
|
# This password cannot be changed using the API or via the web interface. If you need to change it,
|
|
# modify it in this file.
|
|
# Create one by using for example: echo -n yourpassword | shasum -a 256
|
|
# and put the resulting hash value into the following line
|
|
# CHANGE THIS!
|
|
GRAYLOG_ROOT_PASSWORD_SHA2="4ecf565d4c1b1606facdba3ff1ee5dc3cc1fde93b74d5aa33e6d1c3690e5cade"
|
|
|
|
GRAYLOG_ROOT_TIMEZONE="Europe/Berlin"
|
|
|
|
GRAYLOG_TRANSPORT_EMAIL_ENABLED="true"
|
|
GRAYLOG_TRANSPORT_EMAIL_HOSTNAME="czechman.de"
|
|
GRAYLOG_TRANSPORT_EMAIL_PORT="465"
|
|
GRAYLOG_TRANSPORT_EMAIL_USE_AUTH="true"
|
|
GRAYLOG_TRANSPORT_EMAIL_USE_SSL="false"
|
|
GRAYLOG_TRANSPORT_EMAIL_USE_TLS="true"
|
|
GRAYLOG_TRANSPORT_EMAIL_AUTH_USERNAME="McTvServer@czechman.de"
|
|
GRAYLOG_TRANSPORT_EMAIL_AUTH_PASSWORD="rTg735UIRS6ZR-99EcLB"
|
|
GRAYLOG_TRANSPORT_EMAIL_SUBJECT_PREFIX="[graylog]"
|
|
GRAYLOG_TRANSPORT_EMAIL_FROM_EMAIL="gr4yl0g@czechman.de"
|
|
GRAYLOG_TRANSPORT_EMAIL_WEB_INTERFACE_URL="http://192.168.2.79:9001"
|