You've already forked ghost-matomo-mariadb-traefik-ssl
29 lines
944 B
Bash
29 lines
944 B
Bash
|
|
# Docker Compose can read environment variables from this file.
|
|
# See https://docs.docker.com/compose/env-file/
|
|
|
|
# Put admin areas behind a login prompt, with username and password
|
|
# specified here. Run `htpasswd -n admin` to create a password hash
|
|
# for user "admin". Paste the output here. SSL strongly recommended.
|
|
BASIC_AUTH=
|
|
|
|
# Let's Encrypt needs an email address for registration.
|
|
ACME_EMAIL=
|
|
|
|
# The Traefik dashboard will be available at these domains.
|
|
# The URL is http://example.com/traefik/
|
|
TRAEFIK_DOMAINS=
|
|
|
|
# Your Matamo site will be available at these domains. If all domains
|
|
# have DNS records pointing to your server, they'll get SSL certs.
|
|
MATOMO_DOMAINS=
|
|
|
|
# Set a secure password for the MySQL root user. Remember this so
|
|
# you can login to phpMyAdmin (as username "root").
|
|
MATOMO_DB_ROOT_PASSWORD=
|
|
|
|
# Set the MySQL database name, user and password for Matomo.
|
|
MATOMO_DB_NAME=matomo
|
|
MATOMO_DB_USER=matomo
|
|
MATOMO_DB_PASSWORD=
|