Merge pull request #1826 from olea/master

Variables better be quoted in the configuration examples.
This commit is contained in:
Ana María Martínez Gómez 2017-11-30 09:58:23 +01:00 committed by GitHub
commit c0e4d54415
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,10 +19,10 @@ DATABASE_PORT=3306
# having to create a .env file:
# https://github.com/openSUSE/osem/blob/master/dotenv.example
OSEM_NAME=Dockerized OSEM
OSEM_HOSTNAME=http://localhost:9292
OSEM_ERRBIT_HOST=localhost
SECRET_KEY_BASE=changemechangemechangeme
OSEM_NAME="Dockerized OSEM"
OSEM_HOSTNAME="http://localhost:9292"
OSEM_ERRBIT_HOST="localhost"
SECRET_KEY_BASE=changemechangemechangeme"
# these settings work for the MailHog server that is enabled by default in
# docker-compose.yml
@ -31,9 +31,10 @@ SECRET_KEY_BASE=changemechangemechangeme
# your users are going to see the HTTP status 500 page
# you should comment out or remove the mailhog service from docker-compose.yml,
# too
OSEM_EMAIL_ADDRESS=osem@mailhog
OSEM_SMTP_AUTHENTICATION=login
OSEM_SMTP_ADDRESS=mailhog
OSEM_SMTP_PORT=1025
OSEM_SMTP_USERNAME=mailhog
OSEM_SMTP_PASSWORD=mailhog
OSEM_EMAIL_ADDRESS="osem@mailhog"
OSEM_SMTP_AUTHENTICATION="login"
OSEM_SMTP_ADDRESS="mailhog"
OSEM_SMTP_PORT="1025"
OSEM_SMTP_USERNAME="mailhog"
OSEM_SMTP_PASSWORD="mailhog"