皆さん、こんにちは。
皆さんもご存知の通り、インストールはすべて完了しましたが、SMTPの設定はまだしていません。なので、今から設定しようとしています。このapp.ymlの設定が正しいか確認したいのですが。
templates:
- templates/postgres.template.yml
- templates/redis.template.yml
- templates/web.template.yml
- templates/web.ratelimited.template.yml
- templates/web.ssl.template.yml
- templates/web.letsencrypt.ssl.template.yml
expose:
- 80:80
- 443:443
params:
db_default_text_search_config: pg_catalog.english
db_shared_buffers: 1024MB
env:
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
LANGUAGE: en_US.UTF-8
DISCOURSE_HOSTNAME: debatehosting.co
DISCOURSE_DEVELOPER_EMAILS: [redacted]
#DISCOURSE_SKIP_EMAIL_SETUP: '1'
UNICORN_WORKERS: 4
DISCOURSE_SMTP_ADDRESS: smtp.maileroo.com
DISCOURSE_SMTP_PORT: 587
DISCOURSE_SMTP_USER_NAME: [redacted]
DISCOURSE_SMTP_PASSWORD: "[redacted]"
DISCOURSE_SMTP_AUTHENTICATION: login
DISCOURSE_SMTP_ENABLE_START_TLS: true
volumes:
- volume:
host: "/var/discourse/shared/standalone"
guest: "/shared"
- volume:
host: "/var/discourse/shared/standalone/log/var-log"
guest: "/var/log"
hooks:
after_code:
- exec:
cd: "$home/plugins"
cmd:
- git clone
run:
- exec: echo "Beginning of custom commands"
- exec: echo "End of custom commands"
いくつかテストを行い、「ERROR - execution expired」というエラーが発生しました。
誰か教えていただけますか?
