mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 01:34:15 +01:00
Update MAIL_VERIFY_SSL_PEER comment & Add it where missing
This commit is contained in:
parent
e3d348cda2
commit
54f9a5de15
11
.env.example
11
.env.example
@ -127,9 +127,18 @@ MAIL_PASSWORD=null
|
||||
MAIL_ENCRYPTION=null
|
||||
MAIL_FROM_NAME=null
|
||||
MAIL_FROM_ADDRESS=null
|
||||
# Set MAIL_VERIFY_SSL_PEER=false if not using SSL for email
|
||||
|
||||
|
||||
# SSL peer verification.
|
||||
# Set this to false to disable the SSL certificate validation.
|
||||
#
|
||||
# WARNING
|
||||
# Disabling peer verification can result in a major security flaw.
|
||||
# Change it only if you know what you're doing.
|
||||
|
||||
MAIL_VERIFY_SSL_PEER=true
|
||||
|
||||
|
||||
#### API settings ####
|
||||
|
||||
# The maximum number of API calls in a minute from the same IP.
|
||||
|
6
Dockerfile
vendored
6
Dockerfile
vendored
@ -155,6 +155,12 @@ ENV \
|
||||
MAIL_ENCRYPTION=null \
|
||||
MAIL_FROM_NAME=null \
|
||||
MAIL_FROM_ADDRESS=null \
|
||||
# SSL peer verification.
|
||||
# Set this to false to disable the SSL certificate validation.
|
||||
# WARNING
|
||||
# Disabling peer verification can result in a major security flaw.
|
||||
# Change it only if you know what you're doing.
|
||||
MAIL_VERIFY_SSL_PEER=true \
|
||||
# API settings
|
||||
# The maximum number of API calls in a minute from the same IP.
|
||||
# Once reached, all requests from this IP will be rejected until the minute has elapsed.
|
||||
|
@ -53,6 +53,12 @@ services:
|
||||
- MAIL_ENCRYPTION=null
|
||||
- MAIL_FROM_NAME=null
|
||||
- MAIL_FROM_ADDRESS=null
|
||||
# SSL peer verification.
|
||||
# Set this to false to disable the SSL certificate validation.
|
||||
# WARNING
|
||||
# Disabling peer verification can result in a major security flaw.
|
||||
# Change it only if you know what you're doing.
|
||||
- MAIL_VERIFY_SSL_PEER=true
|
||||
# API settings
|
||||
# The maximum number of API calls in a minute from the same IP.
|
||||
# Once reached, all requests from this IP will be rejected until the minute has elapsed.
|
||||
|
Loading…
Reference in New Issue
Block a user