Intial Commit
This commit is contained in:
153
.env
Executable file
153
.env
Executable file
@@ -0,0 +1,153 @@
|
||||
|
||||
## Security
|
||||
#
|
||||
# Set these to strong passwords to avoid intruders from impersonating a service account
|
||||
# The service(s) won't start unless these are specified
|
||||
# Running ./gen-passwords.sh will update .env with strong passwords
|
||||
# DO NOT reuse passwords
|
||||
#
|
||||
|
||||
# XMPP component password for Jicofo
|
||||
JICOFO_COMPONENT_SECRET=c688eda873669a2c5531c54f6277a574
|
||||
|
||||
# XMPP password for Jicofo client connections
|
||||
JICOFO_AUTH_PASSWORD=1f136e2b96c7ce0ad45cadef1ca3fd89
|
||||
|
||||
# XMPP password for JVB client connections
|
||||
JVB_AUTH_PASSWORD=9955048acdf8f96e1ce02f7ebf5aa4a6
|
||||
|
||||
# XMPP password for Jigasi MUC client connections
|
||||
JIGASI_XMPP_PASSWORD=a38a5e1e61d8f1a165f2e0df1807c7be
|
||||
|
||||
# XMPP recorder password for Jibri client connections
|
||||
JIBRI_RECORDER_PASSWORD=8daea9305a240f6d5f9d01808fa5fbcf
|
||||
|
||||
# XMPP password for Jibri client connections
|
||||
JIBRI_XMPP_PASSWORD=fe0a93e89eb6a453a06f25ca6a4ddf21
|
||||
|
||||
|
||||
#
|
||||
# Basic configuration options
|
||||
#
|
||||
|
||||
# Directory where all configuration will be stored
|
||||
CONFIG=/opt/openAger/config
|
||||
|
||||
# Exposed HTTP port for node red (1880)
|
||||
NODE_PORT=1874
|
||||
|
||||
# Exposed port for mosquitto (1883)
|
||||
MOSQUITTO_PORT=1884
|
||||
|
||||
# Exposed SSL port for node red (9001)
|
||||
MOSQUITTOS_PORT=9002
|
||||
|
||||
# System time zone
|
||||
TZ=Europe/Vienna
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Config for node-red
|
||||
#
|
||||
|
||||
# in case you are using the great nginx/letsencrypt combination from jwilder
|
||||
# and nginx: https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion
|
||||
|
||||
# Your hostname for nginx
|
||||
#NODE_VIRTUAL_HOST=hostname.domain.com
|
||||
|
||||
# Your email
|
||||
#NODE_LETSENCRYPT_EMAIL= your@mail.com
|
||||
|
||||
# Your hostname for letsencrypt
|
||||
#NODE_LETSENCRYPT_HOST= hostname.domain.com
|
||||
|
||||
# This is the secret to encrypt your password storage within nodered
|
||||
NODE_RED_CREDENTIAL_SECRET=enryptmysecrets
|
||||
|
||||
# This is the password for the frontend / ui access with username "open".
|
||||
# Get a new hash by docker exec -it node-red npx node-red admin hash-pw
|
||||
NODE_RED_USER_AUTH=$2b$08$XUvNWY1pmG39J1Nc1OipD.JjUoLdvfgfDJDIiY1Tma/6YZEVjAADu
|
||||
|
||||
# This is the password for the backend of nodered with username "admin"
|
||||
NODE_RED_ADMIN_AUTH=$2b$08$XUvNWY1pmG39J1Nc1OipD.JjUoLdvfgfDJDIiY1Tma/6YZEVjAADu
|
||||
|
||||
|
||||
#
|
||||
# Config for mosquitto
|
||||
#
|
||||
|
||||
# Note: hardcoded mqtt user is open:ager
|
||||
# Change or add user? docker exec -it mosquitto mosquitto_passwd -b /mosquitto/config/passwordfile open ager
|
||||
|
||||
# Mosquitto URL
|
||||
MQTT_URL=openager_mosquitto_1
|
||||
|
||||
|
||||
#
|
||||
# Config MariaDB
|
||||
#
|
||||
|
||||
# Root Password for mariadb. CHANGE THAT in case you want to expose it to the
|
||||
# internet
|
||||
MYSQL_ROOT_PASSWORD=openager
|
||||
|
||||
# Username to connect
|
||||
MYSQL_USER=open
|
||||
|
||||
#Password for the user above
|
||||
MYSQL_PASSWORD=ager
|
||||
|
||||
# Database we are going to use
|
||||
MYSQL_DATABASE=openager
|
||||
|
||||
# internal hostname of mariadb
|
||||
MYSQL_URL=openager_mariadb_1
|
||||
|
||||
#
|
||||
# Config phpMyAdmin
|
||||
#
|
||||
|
||||
# Hostname of your mariadb
|
||||
PMA_HOST=openager_mariadb_1
|
||||
|
||||
# Port of phpMyAdmin if you want to expose (8088)
|
||||
PHMMYADMIN_PORT=8088
|
||||
|
||||
|
||||
#
|
||||
# Config for influxDB
|
||||
#
|
||||
|
||||
# admin user and password for influxdb
|
||||
INFLUXDB_ADMIN_USER=admin
|
||||
INFLUXDB_ADMIN_PASSWORD=openager
|
||||
|
||||
|
||||
# standard user and password for influx
|
||||
INFLUXDB_USER=open
|
||||
INFLUXDB_USER_PASSWORD=ager
|
||||
|
||||
# name of the standard db within influx
|
||||
INFLUXDB_DB=openAger
|
||||
|
||||
# Hostname of the influx
|
||||
INFLUX_URL=openager_influxdb_1
|
||||
|
||||
|
||||
#
|
||||
# Config for grafana
|
||||
#
|
||||
|
||||
# external port of phpMyAdmin if you want to expose (3001)
|
||||
GRAFANA_PORT=3003
|
||||
|
||||
# Your hostname for nginx
|
||||
#GRAFANA_VIRTUAL_HOST=hostname.domain.com
|
||||
|
||||
# Your email
|
||||
#GRAFANA_LETSENCRYPT_EMAIL= your@mail.com
|
||||
|
||||
# Your hostname for letsencrypt
|
||||
#GRAFANA_LETSENCRYPT_HOST= hostname.domain.com
|
||||
Reference in New Issue
Block a user