fix typos

This commit is contained in:
Philipp Rothmann 2022-08-19 10:52:41 +02:00
parent 9a7723167f
commit 88c532a72a
5 changed files with 8 additions and 14 deletions

View File

@ -7,7 +7,7 @@ DOMAIN=vikunja.example.com
LETS_ENCRYPT_ENV=production
SECRET_DB_PASSWORD_VERSION=V1
SECRET_DB_PASSWORD_VERSION=v1
SECRET_JWT_SECRET_VERSION=v1
LOG_LEVEL=INFO
@ -21,7 +21,7 @@ COMPOSE_FILE=compose.yml
# OAUTH_NAME
# OAUTH_URL
# OAUTH_CLIENT_ID
# SECRET_OAUTH_SECRET_VERSION=V1
# SECRET_OAUTH_SECRET_VERSION=v1
# E-MAIL
# COMPOSE_FILE="${COMPOSE_FILE}:compose.smtp.yml"

View File

@ -1 +1 @@
export CONFIG_YML_VERSION=v1
export CONFIG_YML_VERSION=v2

View File

@ -10,9 +10,9 @@ services:
- SMTP_FROM_EMAIL
secrets:
- smtp_pasword
- smtp_password
secrets:
smtp_password:
external: true
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}

View File

@ -27,12 +27,6 @@ services:
- "traefik.http.routers.${STACK_NAME}_api.rule=Host(`${DOMAIN}`) && PathPrefix(`/api/v1`, `/dav/`, `/.well-known/`)"
- "traefik.http.routers.${STACK_NAME}_api.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}_api.tls.certresolver=${LETS_ENCRYPT_ENV}"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:3456" ]
interval: 30s
timeout: 10s
retries: 10
start_period: 1m
app:
image: vikunja/frontend

View File

@ -136,11 +136,11 @@ mailer:
# SMTP username
username: {{ env "SMTP_USER" }}
# SMTP password
password: {{ secret "SMTP_PASSWORD" }}
password: {{ secret "smtp_password" }}
# Wether to skip verification of the tls certificate on the server
skiptlsverify: false
# The default from address when sending emails
fromemail: {{ secret "SMTP_FROM_EMAIL" }}
fromemail: {{ env "SMTP_FROM_EMAIL" }}
# The length of the mail queue.
queuelength: 100
# The timeout in seconds after which the current open connection to the mailserver will be closed.
@ -325,4 +325,4 @@ auth:
# username:
# # If set to a non-empty value the /metrics endpoint will require this as a password via basic auth in combination with the username below.
# password:
#
#