-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
47 lines (37 loc) · 1.24 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Whether spontaneous signups are allowed.
# NOTE: invitations from admins are still possible with this set to false
SIGNUPS_ALLOWED=""
#Invitations can only be performed by admins
INVITATIONS_ALLOWED=""
# This is the external ip of the machine
HOST_IP=""
# This is the base domain of the vw instance, which will be vaultwarden.${HOST_DOMAIN}
HOST_DOMAIN=""
# Logging stuff
VW_LOG_LEVEL=""
VW_LOG_PATH=""
# EMAIL needed for the let's encrypt registration/challenge
ACME_MAIL=""
# Generate the administrator password hash with the following command,
# substituting the desired password (a minimum of 32 random characters is suggested)
#
# docker run --rm -it vaultwarden/server /vaultwarden hash
#
# Then you will need to DOUBLE every $ character instance (there are 5 of them) due to dockerfile variable interpolation syntax
ADMIN_PWD_HASH=""
# Mail settings, can also be configured from the admin interface
#
# SMTP_HOST=""
# SMTP_FROM=""
# SMTP_PORT=""
# SMTP_SECURITY=""
# SMTP_USERNAME=""
# SMTP_PASSWORD=""
# TODO AFTER YOU ARE FINISHED SETTING UP ALL OF THE ABOVE
# https://github.com/dani-garcia/vaultwarden/wiki/Enabling-Mobile-Client-push-notification
#
# PUSH_ENABLED="true"
# PUSH_INSTALLATION_ID=""
# PUSH_INSTALLATION_KEY=""
# FAIL2BAN
F2B_TZ=""