mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-20 19:57:44 +02:00
Set empty env var with null
This commit is contained in:
parent
ca5f15d462
commit
ac9e705455
@ -177,10 +177,10 @@ ENV \
|
|||||||
WEBAUTHN_NAME=2FAuth \
|
WEBAUTHN_NAME=2FAuth \
|
||||||
# Relying Party ID. If null, the device will fill it internally.
|
# Relying Party ID. If null, the device will fill it internally.
|
||||||
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#how-to-determine-the-relying-party-id
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#how-to-determine-the-relying-party-id
|
||||||
WEBAUTHN_ID= \
|
WEBAUTHN_ID=null \
|
||||||
# Optional image data in BASE64 (128 bytes maximum) or an image url
|
# Optional image data in BASE64 (128 bytes maximum) or an image url
|
||||||
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#relying-party-icon
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#relying-party-icon
|
||||||
WEBAUTHN_ICON= \
|
WEBAUTHN_ICON=null \
|
||||||
# Use this setting to control how user verification behave during the
|
# Use this setting to control how user verification behave during the
|
||||||
# WebAuthn authentication flow.
|
# WebAuthn authentication flow.
|
||||||
#
|
#
|
||||||
@ -198,7 +198,7 @@ ENV \
|
|||||||
# Supported:
|
# Supported:
|
||||||
# '*': to trust any proxy
|
# '*': to trust any proxy
|
||||||
# A comma separated IP list: The list of proxies IP to trust
|
# A comma separated IP list: The list of proxies IP to trust
|
||||||
TRUSTED_PROXIES= \
|
TRUSTED_PROXIES=null \
|
||||||
# Leave the following configuration vars as is.
|
# Leave the following configuration vars as is.
|
||||||
# Unless you like to tinker and know what you're doing.
|
# Unless you like to tinker and know what you're doing.
|
||||||
BROADCAST_DRIVER=log \
|
BROADCAST_DRIVER=log \
|
||||||
|
@ -63,21 +63,21 @@ services:
|
|||||||
# When using 'reverse-proxy-guard' 2FAuth only look for the dedicated headers and skip all other built-in
|
# When using 'reverse-proxy-guard' 2FAuth only look for the dedicated headers and skip all other built-in
|
||||||
# authentication checks. That means your proxy is fully responsible of the authentication process, 2FAuth will
|
# authentication checks. That means your proxy is fully responsible of the authentication process, 2FAuth will
|
||||||
# trust him as long as headers are presents.
|
# trust him as long as headers are presents.
|
||||||
- AUTHENTICATION_GUARD=
|
- AUTHENTICATION_GUARD=web-guard
|
||||||
# Name of the HTTP headers sent by the reverse proxy that identifies the authenticated user at proxy level.
|
# Name of the HTTP headers sent by the reverse proxy that identifies the authenticated user at proxy level.
|
||||||
# Check your proxy documentation to find out how these headers are named (i.e 'REMOTE_USER', 'REMOTE_EMAIL', etc...)
|
# Check your proxy documentation to find out how these headers are named (i.e 'REMOTE_USER', 'REMOTE_EMAIL', etc...)
|
||||||
# (only relevant when AUTHENTICATION_GUARD is set to 'reverse-proxy-guard')
|
# (only relevant when AUTHENTICATION_GUARD is set to 'reverse-proxy-guard')
|
||||||
- AUTH_PROXY_HEADER_FOR_USER=
|
- AUTH_PROXY_HEADER_FOR_USER=null
|
||||||
- AUTH_PROXY_HEADER_FOR_EMAIL=
|
- AUTH_PROXY_HEADER_FOR_EMAIL=null
|
||||||
# WebAuthn settings
|
# WebAuthn settings
|
||||||
# Relying Party name, aka the name of the application. If null, defaults to APP_NAME
|
# Relying Party name, aka the name of the application. If null, defaults to APP_NAME
|
||||||
- WEBAUTHN_NAME=
|
- WEBAUTHN_NAME=2FAuth
|
||||||
# Relying Party ID. If null, the device will fill it internally.
|
# Relying Party ID. If null, the device will fill it internally.
|
||||||
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#how-to-determine-the-relying-party-id
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#how-to-determine-the-relying-party-id
|
||||||
- WEBAUTHN_ID=
|
- WEBAUTHN_ID=null
|
||||||
# Optional image data in BASE64 (128 bytes maximum) or an image url
|
# Optional image data in BASE64 (128 bytes maximum) or an image url
|
||||||
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#relying-party-icon
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#relying-party-icon
|
||||||
- WEBAUTHN_ICON=
|
- WEBAUTHN_ICON=null
|
||||||
# Use this setting to control how user verification behave during the
|
# Use this setting to control how user verification behave during the
|
||||||
# WebAuthn authentication flow.
|
# WebAuthn authentication flow.
|
||||||
#
|
#
|
||||||
@ -90,12 +90,12 @@ services:
|
|||||||
# 'required': Will ALWAYS ask for user verification
|
# 'required': Will ALWAYS ask for user verification
|
||||||
# 'preferred' (default) : Will ask for user verification IF POSSIBLE
|
# 'preferred' (default) : Will ask for user verification IF POSSIBLE
|
||||||
# 'discouraged' : Will NOT ask for user verification (for example, to minimize disruption to the user interaction flow)
|
# 'discouraged' : Will NOT ask for user verification (for example, to minimize disruption to the user interaction flow)
|
||||||
- WEBAUTHN_USER_VERIFICATION=
|
- WEBAUTHN_USER_VERIFICATION=preferred
|
||||||
# Use this setting to declare trusted proxied.
|
# Use this setting to declare trusted proxied.
|
||||||
# Supported:
|
# Supported:
|
||||||
# '*': to trust any proxy
|
# '*': to trust any proxy
|
||||||
# A comma separated IP list: The list of proxies IP to trust
|
# A comma separated IP list: The list of proxies IP to trust
|
||||||
- TRUSTED_PROXIES=
|
- TRUSTED_PROXIES=null
|
||||||
# Leave the following configuration vars as is.
|
# Leave the following configuration vars as is.
|
||||||
# Unless you like to tinker and know what you're doing.
|
# Unless you like to tinker and know what you're doing.
|
||||||
- BROADCAST_DRIVER=log
|
- BROADCAST_DRIVER=log
|
||||||
|
Loading…
x
Reference in New Issue
Block a user