-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoffen.env.template
27 lines (21 loc) · 1.05 KB
/
offen.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2020-2021 - Offen Authors <[email protected]>
# SPDX-License-Identifier: Unlicense
# This holds a comma separated list of domains you want Offen to acquire
# free SSL certificates from LetsEncrypt for, e.g. `offen.mysite.com`.
# In this setup, you cannot serve a domain that is not listed in here.
OFFEN_SERVER_AUTOTLS="<xxx>"
# This is an application secret used for signing login cookies and URLs.
# You can generate a unique secret for your setup by running
# `docker run --rm offen/offen:latest secret -quiet`
# If you do not set a value, a random secret will be created each time Offen
# starts, invalidating all existing login sessions, pending password resets and
# pending user invites.
OFFEN_SECRET="<xxx>"
# These credentials are used for sending transactional email when resetting
# a password or inviting new users. Offen will start without these being set
# but keep in mind you won't be able to recover your account without
# configuring SMTP.
OFFEN_SMTP_HOST="<xxx>"
OFFEN_SMTP_USER="<xxx>"
OFFEN_SMTP_PASSWORD="<xxx>"
OFFEN_SMTP_SENDER="<xxx>"