-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUACAMOLE-374: Migrate TOTP documentation to combined native+Docker a…
…pproach.
- Loading branch information
1 parent
82aa331
commit 373a236
Showing
3 changed files
with
153 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# A comma-separated list of all IP addresses and/or subnets (in CIDR notation) | ||
# that SHOULD NOT be required to verify themselves using TOTP when | ||
# authenticating. All other hosts in this list will required to verify with | ||
# TOTP. | ||
# | ||
# **If both bypass and enforce lists are provided, the enforce list takes | ||
# priority and this property is effectively ignored.** | ||
# | ||
# This property is optional. By default, verification will be required for all | ||
# users regardless of their IP address (TOTP is not bypassed for any | ||
# addresses). | ||
# | ||
totp-bypass-hosts: 10.10.0.0/8, 10.11.0.2 | ||
|
||
# | ||
# A comma-separated list of all IP addresses and/or subnets (in CIDR notation) | ||
# that SHOULD be required to verify themselves using TOTP when authenticating. | ||
# All other hosts will not be required to verify with TOTP. | ||
# | ||
# **If both bypass and enforce lists are provided, the enforce list takes | ||
# priority and the bypass list is effectively ignored.** | ||
# | ||
# This property is optional. By default, verification will be required for all | ||
# users regardless of their IP address (TOTP is enforced for all addresses). | ||
# | ||
totp-enforce-hosts: 10.12.0.0/8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# | ||
# The human-readable name of the entity issuing user accounts. If not | ||
# specified, "Apache Guacamole" will be used by default. | ||
# | ||
totp-issuer: Apache Guacamole | ||
|
||
# | ||
# The number of digits which should be included in each generated TOTP code. | ||
# Legal values are 6, 7, or 8. By default, 6-digit codes are generated. | ||
# | ||
totp-digits: 6 | ||
|
||
# | ||
# The duration that each generated code should remain valid, in seconds. By | ||
# default, each code remains valid for 30 seconds. | ||
# | ||
totp-period: 30 | ||
|
||
# | ||
# The hash algorithm that should be used to generate TOTP codes. Legal values | ||
# are "sha1", "sha256", and "sha512". By default, "sha1" is used. | ||
# | ||
totp-mode: sha1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters