forked from solidcouch/simple-email-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sample
55 lines (46 loc) · 1.82 KB
/
.env.sample
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
# port on which the service will run
PORT=3005
# name of the app that sends the emails - featured in the message subject or body
APP_NAME=Tired.bike
APP_URL=https://tired.bike
# provide path to a logo to display on top of emails - keep it small!
# absolute path, or relative path to the base of the project
APP_LOGO=./logo.png
# server base url, e.g. to construct correct email verification link
# this is the base url that end users see
BASE_URL=http://localhost:3005
# set to true if server runs behind reverse proxy (e.g. nginx)
BEHIND_PROXY=
# mailer Solid identity
# mailer needs Solid identity to authenticate with, it's set up to use Community Solid Server as identity provider
MAILER_IDENTITY_EMAIL=bot@example
MAILER_IDENTITY_PASSWORD=password
MAILER_IDENTITY_PROVIDER=http://localhost:3456
MAILER_IDENTITY_WEBID="http://localhost:3456/bot/profile/card#me"
MAILER_IDENTITY_CSS_VERSION=7 # supported versions are 6 and 7
# link to group of users who are allowed to use the service
ALLOWED_GROUPS=
# SMTP Transport for sending emails
# string or undefined
SMTP_TRANSPORT_HOST=
# number
SMTP_TRANSPORT_PORT=1025
# boolean - give truthy value if true, otherwise leave empty
SMTP_TRANSPORT_SECURE=
# string or undefined
SMTP_TRANSPORT_AUTH_USER=
# string or undefined
SMTP_TRANSPORT_AUTH_PASS=
# boolean
SMTP_TRANSPORT_REQUIRE_TLS=
# email address which will be the sender of the notifications and email verification messages
# JWT
# path to JWT (private) key
# you can use the command `openssl ecparam -name prime256v1 -genkey -noout -out ecdsa-p256-private.pem` to generate one
JWT_KEY=./ecdsa-p256-private.pem
# jwt algorithm
JWT_ALG=ES256
# type index class by which we find settings with email
EMAIL_DISCOVERY_TYPE="http://w3id.org/hospex/ns#PersonalHospexDocument"