.env.template 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. # shellcheck disable=SC2034,SC2148
  2. ## Vaultwarden Configuration File
  3. ## Uncomment any of the following lines to change the defaults
  4. ##
  5. ## Be aware that most of these settings will be overridden if they were changed
  6. ## in the admin interface. Those overrides are stored within DATA_FOLDER/config.json .
  7. ##
  8. ## By default, Vaultwarden expects for this file to be named ".env" and located
  9. ## in the current working directory. If this is not the case, the environment
  10. ## variable ENV_FILE can be set to the location of this file prior to starting
  11. ## Vaultwarden.
  12. ## Main data folder
  13. # DATA_FOLDER=data
  14. ## Database URL
  15. ## When using SQLite, this is the path to the DB file, default to %DATA_FOLDER%/db.sqlite3
  16. # DATABASE_URL=data/db.sqlite3
  17. ## When using MySQL, specify an appropriate connection URI.
  18. ## Details: https://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
  19. # DATABASE_URL=mysql://user:password@host[:port]/database_name
  20. ## When using PostgreSQL, specify an appropriate connection URI (recommended)
  21. ## or keyword/value connection string.
  22. ## Details:
  23. ## - https://docs.diesel.rs/diesel/pg/struct.PgConnection.html
  24. ## - https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING
  25. # DATABASE_URL=postgresql://user:password@host[:port]/database_name
  26. ## Database max connections
  27. ## Define the size of the connection pool used for connecting to the database.
  28. # DATABASE_MAX_CONNS=10
  29. ## Database connection initialization
  30. ## Allows SQL statements to be run whenever a new database connection is created.
  31. ## This is mainly useful for connection-scoped pragmas.
  32. ## If empty, a database-specific default is used:
  33. ## - SQLite: "PRAGMA busy_timeout = 5000; PRAGMA synchronous = NORMAL;"
  34. ## - MySQL: ""
  35. ## - PostgreSQL: ""
  36. # DATABASE_CONN_INIT=""
  37. ## Individual folders, these override %DATA_FOLDER%
  38. # RSA_KEY_FILENAME=data/rsa_key
  39. # ICON_CACHE_FOLDER=data/icon_cache
  40. # ATTACHMENTS_FOLDER=data/attachments
  41. # SENDS_FOLDER=data/sends
  42. # TMP_FOLDER=data/tmp
  43. ## Templates data folder, by default uses embedded templates
  44. ## Check source code to see the format
  45. # TEMPLATES_FOLDER=/path/to/templates
  46. ## Automatically reload the templates for every request, slow, use only for development
  47. # RELOAD_TEMPLATES=false
  48. ## Client IP Header, used to identify the IP of the client, defaults to "X-Real-IP"
  49. ## Set to the string "none" (without quotes), to disable any headers and just use the remote IP
  50. # IP_HEADER=X-Real-IP
  51. ## Cache time-to-live for successfully obtained icons, in seconds (0 is "forever")
  52. # ICON_CACHE_TTL=2592000
  53. ## Cache time-to-live for icons which weren't available, in seconds (0 is "forever")
  54. # ICON_CACHE_NEGTTL=259200
  55. ## Web vault settings
  56. # WEB_VAULT_FOLDER=web-vault/
  57. # WEB_VAULT_ENABLED=true
  58. ## Enables websocket notifications
  59. # WEBSOCKET_ENABLED=false
  60. ## Controls the WebSocket server address and port
  61. # WEBSOCKET_ADDRESS=0.0.0.0
  62. # WEBSOCKET_PORT=3012
  63. ## Controls whether users are allowed to create Bitwarden Sends.
  64. ## This setting applies globally to all users.
  65. ## To control this on a per-org basis instead, use the "Disable Send" org policy.
  66. # SENDS_ALLOWED=true
  67. ## Controls whether users can enable emergency access to their accounts.
  68. ## This setting applies globally to all users.
  69. # EMERGENCY_ACCESS_ALLOWED=true
  70. ## Controls whether event logging is enabled for organizations
  71. ## This setting applies to organizations.
  72. ## Disabled by default. Also check the EVENT_CLEANUP_SCHEDULE and EVENTS_DAYS_RETAIN settings.
  73. # ORG_EVENTS_ENABLED=false
  74. ## Number of days to retain events stored in the database.
  75. ## If unset (the default), events are kept indefinitely and the scheduled job is disabled!
  76. # EVENTS_DAYS_RETAIN=
  77. ## BETA FEATURE: Groups
  78. ## Controls whether group support is enabled for organizations
  79. ## This setting applies to organizations.
  80. ## Disabled by default because this is a beta feature, it contains known issues!
  81. ## KNOW WHAT YOU ARE DOING!
  82. # ORG_GROUPS_ENABLED=false
  83. ## Job scheduler settings
  84. ##
  85. ## Job schedules use a cron-like syntax (as parsed by https://crates.io/crates/cron),
  86. ## and are always in terms of UTC time (regardless of your local time zone settings).
  87. ##
  88. ## The schedule format is a bit different from crontab as crontab does not contains seconds.
  89. ## You can test the the format here: https://crontab.guru, but remove the first digit!
  90. ## SEC MIN HOUR DAY OF MONTH MONTH DAY OF WEEK
  91. ## "0 30 9,12,15 1,15 May-Aug Mon,Wed,Fri"
  92. ## "0 30 * * * * "
  93. ## "0 30 1 * * * "
  94. ##
  95. ## How often (in ms) the job scheduler thread checks for jobs that need running.
  96. ## Set to 0 to globally disable scheduled jobs.
  97. # JOB_POLL_INTERVAL_MS=30000
  98. ##
  99. ## Cron schedule of the job that checks for Sends past their deletion date.
  100. ## Defaults to hourly (5 minutes after the hour). Set blank to disable this job.
  101. # SEND_PURGE_SCHEDULE="0 5 * * * *"
  102. ##
  103. ## Cron schedule of the job that checks for trashed items to delete permanently.
  104. ## Defaults to daily (5 minutes after midnight). Set blank to disable this job.
  105. # TRASH_PURGE_SCHEDULE="0 5 0 * * *"
  106. ##
  107. ## Cron schedule of the job that checks for incomplete 2FA logins.
  108. ## Defaults to once every minute. Set blank to disable this job.
  109. # INCOMPLETE_2FA_SCHEDULE="30 * * * * *"
  110. ##
  111. ## Cron schedule of the job that sends expiration reminders to emergency access grantors.
  112. ## Defaults to hourly (3 minutes after the hour). Set blank to disable this job.
  113. # EMERGENCY_NOTIFICATION_REMINDER_SCHEDULE="0 3 * * * *"
  114. ##
  115. ## Cron schedule of the job that grants emergency access requests that have met the required wait time.
  116. ## Defaults to hourly (7 minutes after the hour). Set blank to disable this job.
  117. # EMERGENCY_REQUEST_TIMEOUT_SCHEDULE="0 7 * * * *"
  118. ##
  119. ## Cron schedule of the job that cleans old events from the event table.
  120. ## Defaults to daily. Set blank to disable this job. Also without EVENTS_DAYS_RETAIN set, this job will not start.
  121. # EVENT_CLEANUP_SCHEDULE="0 10 0 * * *"
  122. ## Enable extended logging, which shows timestamps and targets in the logs
  123. # EXTENDED_LOGGING=true
  124. ## Timestamp format used in extended logging.
  125. ## Format specifiers: https://docs.rs/chrono/latest/chrono/format/strftime
  126. # LOG_TIMESTAMP_FORMAT="%Y-%m-%d %H:%M:%S.%3f"
  127. ## Logging to file
  128. # LOG_FILE=/path/to/log
  129. ## Logging to Syslog
  130. ## This requires extended logging
  131. # USE_SYSLOG=false
  132. ## Log level
  133. ## Change the verbosity of the log output
  134. ## Valid values are "trace", "debug", "info", "warn", "error" and "off"
  135. ## Setting it to "trace" or "debug" would also show logs for mounted
  136. ## routes and static file, websocket and alive requests
  137. # LOG_LEVEL=Info
  138. ## Enable WAL for the DB
  139. ## Set to false to avoid enabling WAL during startup.
  140. ## Note that if the DB already has WAL enabled, you will also need to disable WAL in the DB,
  141. ## this setting only prevents Vaultwarden from automatically enabling it on start.
  142. ## Please read project wiki page about this setting first before changing the value as it can
  143. ## cause performance degradation or might render the service unable to start.
  144. # ENABLE_DB_WAL=true
  145. ## Database connection retries
  146. ## Number of times to retry the database connection during startup, with 1 second delay between each retry, set to 0 to retry indefinitely
  147. # DB_CONNECTION_RETRIES=15
  148. ## Icon service
  149. ## The predefined icon services are: internal, bitwarden, duckduckgo, google.
  150. ## To specify a custom icon service, set a URL template with exactly one instance of `{}`,
  151. ## which is replaced with the domain. For example: `https://icon.example.com/domain/{}`.
  152. ##
  153. ## `internal` refers to Vaultwarden's built-in icon fetching implementation.
  154. ## If an external service is set, an icon request to Vaultwarden will return an HTTP
  155. ## redirect to the corresponding icon at the external service. An external service may
  156. ## be useful if your Vaultwarden instance has no external network connectivity, or if
  157. ## you are concerned that someone may probe your instance to try to detect whether icons
  158. ## for certain sites have been cached.
  159. # ICON_SERVICE=internal
  160. ## Icon redirect code
  161. ## The HTTP status code to use for redirects to an external icon service.
  162. ## The supported codes are 301 (legacy permanent), 302 (legacy temporary), 307 (temporary), and 308 (permanent).
  163. ## Temporary redirects are useful while testing different icon services, but once a service
  164. ## has been decided on, consider using permanent redirects for cacheability. The legacy codes
  165. ## are currently better supported by the Bitwarden clients.
  166. # ICON_REDIRECT_CODE=302
  167. ## Disable icon downloading
  168. ## Set to true to disable icon downloading in the internal icon service.
  169. ## This still serves existing icons from $ICON_CACHE_FOLDER, without generating any external
  170. ## network requests. $ICON_CACHE_TTL must also be set to 0; otherwise, the existing icons
  171. ## will be deleted eventually, but won't be downloaded again.
  172. # DISABLE_ICON_DOWNLOAD=false
  173. ## Icon download timeout
  174. ## Configure the timeout value when downloading the favicons.
  175. ## The default is 10 seconds, but this could be to low on slower network connections
  176. # ICON_DOWNLOAD_TIMEOUT=10
  177. ## Icon blacklist Regex
  178. ## Any domains or IPs that match this regex won't be fetched by the icon service.
  179. ## Useful to hide other servers in the local network. Check the WIKI for more details
  180. ## NOTE: Always enclose this regex withing single quotes!
  181. # ICON_BLACKLIST_REGEX='^(192\.168\.0\.[0-9]+|192\.168\.1\.[0-9]+)$'
  182. ## Any IP which is not defined as a global IP will be blacklisted.
  183. ## Useful to secure your internal environment: See https://en.wikipedia.org/wiki/Reserved_IP_addresses for a list of IPs which it will block
  184. # ICON_BLACKLIST_NON_GLOBAL_IPS=true
  185. ## Disable 2FA remember
  186. ## Enabling this would force the users to use a second factor to login every time.
  187. ## Note that the checkbox would still be present, but ignored.
  188. # DISABLE_2FA_REMEMBER=false
  189. ## Maximum attempts before an email token is reset and a new email will need to be sent.
  190. # EMAIL_ATTEMPTS_LIMIT=3
  191. ## Token expiration time
  192. ## Maximum time in seconds a token is valid. The time the user has to open email client and copy token.
  193. # EMAIL_EXPIRATION_TIME=600
  194. ## Email token size
  195. ## Number of digits in an email 2FA token (min: 6, max: 255).
  196. ## Note that the Bitwarden clients are hardcoded to mention 6 digit codes regardless of this setting!
  197. # EMAIL_TOKEN_SIZE=6
  198. ## Controls if new users can register
  199. # SIGNUPS_ALLOWED=true
  200. ## Controls if new users need to verify their email address upon registration
  201. ## Note that setting this option to true prevents logins until the email address has been verified!
  202. ## The welcome email will include a verification link, and login attempts will periodically
  203. ## trigger another verification email to be sent.
  204. # SIGNUPS_VERIFY=false
  205. ## If SIGNUPS_VERIFY is set to true, this limits how many seconds after the last time
  206. ## an email verification link has been sent another verification email will be sent
  207. # SIGNUPS_VERIFY_RESEND_TIME=3600
  208. ## If SIGNUPS_VERIFY is set to true, this limits how many times an email verification
  209. ## email will be re-sent upon an attempted login.
  210. # SIGNUPS_VERIFY_RESEND_LIMIT=6
  211. ## Controls if new users from a list of comma-separated domains can register
  212. ## even if SIGNUPS_ALLOWED is set to false
  213. # SIGNUPS_DOMAINS_WHITELIST=example.com,example.net,example.org
  214. ## Controls which users can create new orgs.
  215. ## Blank or 'all' means all users can create orgs (this is the default):
  216. # ORG_CREATION_USERS=
  217. ## 'none' means no users can create orgs:
  218. # ORG_CREATION_USERS=none
  219. ## A comma-separated list means only those users can create orgs:
  220. # [email protected],[email protected]
  221. ## Token for the admin interface, preferably an Argon2 PCH string
  222. ## Vaultwarden has a built-in generator by calling `vaultwarden hash`
  223. ## For details see: https://github.com/dani-garcia/vaultwarden/wiki/Enabling-admin-page#secure-the-admin_token
  224. ## If not set, the admin panel is disabled
  225. ## New Argon2 PHC string
  226. ## Note that for some environments, like docker-compose you need to escape all the dollar signs `$` with an extra dollar sign like `$$`
  227. ## Also, use single quotes (') instead of double quotes (") to enclose the string when needed
  228. # ADMIN_TOKEN='$argon2id$v=19$m=65540,t=3,p=4$MmeKRnGK5RW5mJS7h3TOL89GrpLPXJPAtTK8FTqj9HM$DqsstvoSAETl9YhnsXbf43WeaUwJC6JhViIvuPoig78'
  229. ## Old plain text string (Will generate warnings in favor of Argon2)
  230. # ADMIN_TOKEN=Vy2VyYTTsKPv8W5aEOWUbB/Bt3DEKePbHmI4m9VcemUMS2rEviDowNAFqYi1xjmp
  231. ## Enable this to bypass the admin panel security. This option is only
  232. ## meant to be used with the use of a separate auth layer in front
  233. # DISABLE_ADMIN_TOKEN=false
  234. ## Invitations org admins to invite users, even when signups are disabled
  235. # INVITATIONS_ALLOWED=true
  236. ## Name shown in the invitation emails that don't come from a specific organization
  237. # INVITATION_ORG_NAME=Vaultwarden
  238. ## The number of hours after which an organization invite token, emergency access invite token,
  239. ## email verification token and deletion request token will expire (must be at least 1)
  240. # INVITATION_EXPIRATION_HOURS=120
  241. ## Per-organization attachment storage limit (KB)
  242. ## Max kilobytes of attachment storage allowed per organization.
  243. ## When this limit is reached, organization members will not be allowed to upload further attachments for ciphers owned by that organization.
  244. # ORG_ATTACHMENT_LIMIT=
  245. ## Per-user attachment storage limit (KB)
  246. ## Max kilobytes of attachment storage allowed per user.
  247. ## When this limit is reached, the user will not be allowed to upload further attachments.
  248. # USER_ATTACHMENT_LIMIT=
  249. ## Number of days to wait before auto-deleting a trashed item.
  250. ## If unset (the default), trashed items are not auto-deleted.
  251. ## This setting applies globally, so make sure to inform all users of any changes to this setting.
  252. # TRASH_AUTO_DELETE_DAYS=
  253. ## Number of minutes to wait before a 2FA-enabled login is considered incomplete,
  254. ## resulting in an email notification. An incomplete 2FA login is one where the correct
  255. ## master password was provided but the required 2FA step was not completed, which
  256. ## potentially indicates a master password compromise. Set to 0 to disable this check.
  257. ## This setting applies globally to all users.
  258. # INCOMPLETE_2FA_TIME_LIMIT=3
  259. ## Number of server-side passwords hashing iterations for the password hash.
  260. ## The default for new users. If changed, it will be updated during login for existing users.
  261. # PASSWORD_ITERATIONS=350000
  262. ## Controls whether users can set password hints. This setting applies globally to all users.
  263. # PASSWORD_HINTS_ALLOWED=true
  264. ## Controls whether a password hint should be shown directly in the web page if
  265. ## SMTP service is not configured. Not recommended for publicly-accessible instances
  266. ## as this provides unauthenticated access to potentially sensitive data.
  267. # SHOW_PASSWORD_HINT=false
  268. ## Domain settings
  269. ## The domain must match the address from where you access the server
  270. ## It's recommended to configure this value, otherwise certain functionality might not work,
  271. ## like attachment downloads, email links and U2F.
  272. ## For U2F to work, the server must use HTTPS, you can use Let's Encrypt for free certs
  273. # DOMAIN=https://vw.domain.tld:8443
  274. ## Allowed iframe ancestors (Know the risks!)
  275. ## https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors
  276. ## Allows other domains to embed the web vault into an iframe, useful for embedding into secure intranets
  277. ## This adds the configured value to the 'Content-Security-Policy' headers 'frame-ancestors' value.
  278. ## Multiple values must be separated with a whitespace.
  279. # ALLOWED_IFRAME_ANCESTORS=
  280. ## Number of seconds, on average, between login requests from the same IP address before rate limiting kicks in.
  281. # LOGIN_RATELIMIT_SECONDS=60
  282. ## Allow a burst of requests of up to this size, while maintaining the average indicated by `LOGIN_RATELIMIT_SECONDS`.
  283. ## Note that this applies to both the login and the 2FA, so it's recommended to allow a burst size of at least 2.
  284. # LOGIN_RATELIMIT_MAX_BURST=10
  285. ## Number of seconds, on average, between admin login requests from the same IP address before rate limiting kicks in.
  286. # ADMIN_RATELIMIT_SECONDS=300
  287. ## Allow a burst of requests of up to this size, while maintaining the average indicated by `ADMIN_RATELIMIT_SECONDS`.
  288. # ADMIN_RATELIMIT_MAX_BURST=3
  289. ## Set the lifetime of admin sessions to this value (in minutes).
  290. # ADMIN_SESSION_LIFETIME=20
  291. ## Yubico (Yubikey) Settings
  292. ## Set your Client ID and Secret Key for Yubikey OTP
  293. ## You can generate it here: https://upgrade.yubico.com/getapikey/
  294. ## You can optionally specify a custom OTP server
  295. # YUBICO_CLIENT_ID=11111
  296. # YUBICO_SECRET_KEY=AAAAAAAAAAAAAAAAAAAAAAAA
  297. # YUBICO_SERVER=http://yourdomain.com/wsapi/2.0/verify
  298. ## Duo Settings
  299. ## You need to configure all options to enable global Duo support, otherwise users would need to configure it themselves
  300. ## Create an account and protect an application as mentioned in this link (only the first step, not the rest):
  301. ## https://help.bitwarden.com/article/setup-two-step-login-duo/#create-a-duo-security-account
  302. ## Then set the following options, based on the values obtained from the last step:
  303. # DUO_IKEY=<Integration Key>
  304. # DUO_SKEY=<Secret Key>
  305. # DUO_HOST=<API Hostname>
  306. ## After that, you should be able to follow the rest of the guide linked above,
  307. ## ignoring the fields that ask for the values that you already configured beforehand.
  308. ## Authenticator Settings
  309. ## Disable authenticator time drifted codes to be valid.
  310. ## TOTP codes of the previous and next 30 seconds will be invalid
  311. ##
  312. ## According to the RFC6238 (https://tools.ietf.org/html/rfc6238),
  313. ## we allow by default the TOTP code which was valid one step back and one in the future.
  314. ## This can however allow attackers to be a bit more lucky with there attempts because there are 3 valid codes.
  315. ## You can disable this, so that only the current TOTP Code is allowed.
  316. ## Keep in mind that when a sever drifts out of time, valid codes could be marked as invalid.
  317. ## In any case, if a code has been used it can not be used again, also codes which predates it will be invalid.
  318. # AUTHENTICATOR_DISABLE_TIME_DRIFT=false
  319. ## Rocket specific settings
  320. ## See https://rocket.rs/v0.4/guide/configuration/ for more details.
  321. # ROCKET_ADDRESS=0.0.0.0
  322. # ROCKET_PORT=80 # Defaults to 80 in the Docker images, or 8000 otherwise.
  323. # ROCKET_WORKERS=10
  324. # ROCKET_TLS={certs="/path/to/certs.pem",key="/path/to/key.pem"}
  325. ## Mail specific settings, set SMTP_FROM and either SMTP_HOST or USE_SENDMAIL to enable the mail service.
  326. ## To make sure the email links are pointing to the correct host, set the DOMAIN variable.
  327. ## Note: if SMTP_USERNAME is specified, SMTP_PASSWORD is mandatory
  328. # SMTP_HOST=smtp.domain.tld
  329. # [email protected]
  330. # SMTP_FROM_NAME=Vaultwarden
  331. # SMTP_SECURITY=starttls # ("starttls", "force_tls", "off") Enable a secure connection. Default is "starttls" (Explicit - ports 587 or 25), "force_tls" (Implicit - port 465) or "off", no encryption (port 25)
  332. # SMTP_PORT=587 # Ports 587 (submission) and 25 (smtp) are standard without encryption and with encryption via STARTTLS (Explicit TLS). Port 465 (submissions) is used for encrypted submission (Implicit TLS).
  333. # SMTP_USERNAME=username
  334. # SMTP_PASSWORD=password
  335. # SMTP_TIMEOUT=15
  336. # Whether to send mail via the `sendmail` command
  337. # USE_SENDMAIL=false
  338. # Which sendmail command to use. The one found in the $PATH is used if not specified.
  339. # SENDMAIL_COMMAND="/path/to/sendmail"
  340. ## Defaults for SSL is "Plain" and "Login" and nothing for Non-SSL connections.
  341. ## Possible values: ["Plain", "Login", "Xoauth2"].
  342. ## Multiple options need to be separated by a comma ','.
  343. # SMTP_AUTH_MECHANISM="Plain"
  344. ## Server name sent during the SMTP HELO
  345. ## By default this value should be is on the machine's hostname,
  346. ## but might need to be changed in case it trips some anti-spam filters
  347. # HELO_NAME=
  348. ## Embed images as email attachments
  349. # SMTP_EMBED_IMAGES=false
  350. ## SMTP debugging
  351. ## When set to true this will output very detailed SMTP messages.
  352. ## WARNING: This could contain sensitive information like passwords and usernames! Only enable this during troubleshooting!
  353. # SMTP_DEBUG=false
  354. ## Accept Invalid Hostnames
  355. ## DANGEROUS: This option introduces significant vulnerabilities to man-in-the-middle attacks!
  356. ## Only use this as a last resort if you are not able to use a valid certificate.
  357. # SMTP_ACCEPT_INVALID_HOSTNAMES=false
  358. ## Accept Invalid Certificates
  359. ## DANGEROUS: This option introduces significant vulnerabilities to man-in-the-middle attacks!
  360. ## Only use this as a last resort if you are not able to use a valid certificate.
  361. ## If the Certificate is valid but the hostname doesn't match, please use SMTP_ACCEPT_INVALID_HOSTNAMES instead.
  362. # SMTP_ACCEPT_INVALID_CERTS=false
  363. ## Require new device emails. When a user logs in an email is required to be sent.
  364. ## If sending the email fails the login attempt will fail!!
  365. # REQUIRE_DEVICE_EMAIL=false
  366. ## HIBP Api Key
  367. ## HaveIBeenPwned API Key, request it here: https://haveibeenpwned.com/API/Key
  368. # HIBP_API_KEY=
  369. # vim: syntax=ini