-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
26 lines (21 loc) · 896 Bytes
/
.env.example
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
# Base URL on which the service will be run, if you use a reverse proxy to terminate
# TLS use the URL of the proxy and not the internal URL here.
WIREGUARD_WEB_BASE_URL=http://localhost:8000
# Configuration staging directory
WIREGUARD_STAGING_CONFIG_DIRECTORY=/tmp/wireguard-staging
# email configuration
WIREGUARD_WEB_EMAIL_HOST=localhost
WIREGUARD_WEB_EMAIL_PORT=25
WIREGUARD_WEB_EMAIL_USER=
WIREGUARD_WEB_EMAIL_PASSWORD=
WIREGUARD_WEB_EMAIL_TLS=0
# select the email backend
# examples:
# - django.core.mail.backends.console.EmailBackend -> log to console
# - django.core.mail.backends.smtp.EmailBackend -> smtp
# - django.core.mail.backends.dummy.EmailBackend -> do not send mails
WIREGUARD_WEB_EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
# default from email address
WIREGUARD_WEB_EMAIL_FROM=root@localhost
# enable debug mode with this setting
WIREGUARD_WEB_DEBUG=0