You've already forked ghost-matomo-mariadb-traefik-ssl
Cleaned up for readability, added right folders to gitignore.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,2 +1,6 @@
|
|||||||
.env
|
.env
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
./config/acme
|
||||||
|
./config/matomo
|
||||||
|
./content
|
||||||
@@ -46,7 +46,6 @@ services:
|
|||||||
# Map port 80 and 443 on the host to this container.
|
# Map port 80 and 443 on the host to this container.
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
#- "8000:8080" # Traefik Dashboard
|
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.docker.network=frontend"
|
- "traefik.docker.network=frontend"
|
||||||
@@ -134,10 +133,10 @@ services:
|
|||||||
# Uncomment the next line to enable HSTS header.
|
# Uncomment the next line to enable HSTS header.
|
||||||
#- "traefik.frontend.headers.STSSeconds=15768000"
|
#- "traefik.frontend.headers.STSSeconds=15768000"
|
||||||
|
|
||||||
# This allows Matomo to send email straight out of the box without
|
# This allows Matomo and Ghost to send email straight out of the box.
|
||||||
# having to rely on an external provider like SendGrid or MailGun.
|
|
||||||
# It makes an SMTP host available at the hostname "mail".
|
# It makes an SMTP host available at the hostname "mail".
|
||||||
mail:
|
mail:
|
||||||
|
# https://hub.docker.com/r/bytemark/smtp
|
||||||
image: bytemark/smtp
|
image: bytemark/smtp
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
21
example.env
21
example.env
@@ -10,20 +10,25 @@ BASIC_AUTH=
|
|||||||
# Let's Encrypt needs an email address for registration.
|
# Let's Encrypt needs an email address for registration.
|
||||||
ACME_EMAIL=
|
ACME_EMAIL=
|
||||||
|
|
||||||
# The main URL of your blog. Ghost needs this when using Traefik
|
# The email address your server should email from
|
||||||
# or it'll confusinglyy think its URL is localhost, breaking things
|
# Note: this just sets the email address, no proper SMTP login is set
|
||||||
# like your cover image or the "visit site" link in the Dashboard
|
# up so you'll likely want to make a spam filter exception for these messages
|
||||||
BLOG_URL=
|
SERVER_EMAIL=
|
||||||
|
|
||||||
# You can comma-separate multiple domains if need be (e.g. for www.)
|
# You can comma-separate multiple domains if need be (e.g. for www.)
|
||||||
DOMAINS_BLOG=
|
DOMAINS_BLOG=
|
||||||
DOMAINS_TRAEFIK=
|
DOMAINS_TRAEFIK=
|
||||||
DOMAINS_MATOMO=
|
DOMAINS_MATOMO=
|
||||||
|
|
||||||
# Set a secure password for the MySQL root user. Remember this so
|
# The main URL of your blog. Ghost needs this when using Traefik
|
||||||
|
# or it'll confusinglyy think its URL is localhost, breaking things
|
||||||
|
# like your cover image or the "visit site" link in the Dashboard
|
||||||
|
BLOG_URL=
|
||||||
|
|
||||||
|
# Set a secure password for the MySQL root user.
|
||||||
DB_ROOT_PASSWORD=
|
DB_ROOT_PASSWORD=
|
||||||
|
|
||||||
# Set the MySQL database name, user and password for Matomo.
|
# Set the MySQL database name, user and password for that Matomo and Ghost will use.
|
||||||
DB_NAME=davejansen
|
DB_NAME=
|
||||||
DB_USER=davejansen
|
DB_USER=
|
||||||
DB_PASSWORD=
|
DB_PASSWORD=
|
||||||
|
|||||||
Reference in New Issue
Block a user