blob: d620536154f3d91d39dfde46f23cd797e09125e0 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# A prefix for remote container names
# If you're running on ARM 32-bit CPU architecture, use 'armv7/', otherwise keep blank
CONTAINER_PREFIX=
# The hostname to use for the local SMTP server
LOCAL_SMTP_HOST=smtp
# The username for authenticating to the local SMTP server
LOCAL_SMTP_USER=smtp
# The password for authenticating to the local SMTP server
LOCAL_SMTP_PASSWORD=smtp
# The envelope-from used by the local SMTP server
# Theoretically should be "LOCAL_SMTP_FROM_NAME <LOCAL_SMTP_FROM>", but in
# practice this seems to cause bugs, while setting it to LOCAL_SMTP_FROM works
LOCAL_SMTP_ENVELOPE_FROM=
# The from address used by the local SMTP server
# Recommended to be the same as REMOTE_SMTP_USER, else the remote may reject it
LOCAL_SMTP_FROM=
# The from name used by the local SMTP server
LOCAL_SMTP_FROM_NAME=
# The host of the remote SMTP server, e.g. smtp.gmail.com
REMOTE_SMTP_HOST=
# The port of the remote SMTP server: usually 25, 465, or 587
REMOTE_SMTP_PORT=
# The username for authenticating to the remote SMTP server
# Usually the email address which will be sending the contact emails
REMOTE_SMTP_USER=
# The email address where contact emails will be sent
CONTACT_MAILBOX=
# The name to associate with the contact mailbox
CONTACT_MAILBOX_NAME=
# When this 24-hour limit is reached, the website will no longer
# send emails to the contact mailbox
MAX_DAILY_EMAILS=
# The scheme part of the URI to the website database
DB_SCHEME=sqlite
# The path part of the URI to the website database
DB_PATH=/var/app/joeac.net-http.sqlite
# The Node.JS environment for the Etherpad instance (production, development)
ETHERPAD_NODE_ENV=production
# The admin password for the Etherpad instance
ETHERPAD_ADMIN_PASSWORD=
|