diff options
author | 2023-11-06 19:09:10 +0000 | |
---|---|---|
committer | 2023-11-06 20:51:19 +0100 | |
commit | ba614af82d6b6a85d0c7c387db512fed4b602923 (patch) | |
tree | d28f7840ce6ead657be77d32507700086a53d57b | |
parent | 2b8342fcd5aa77e2f26f9349f3b18f471bd50011 (diff) | |
download | v2-ba614af82d6b6a85d0c7c387db512fed4b602923.tar.gz v2-ba614af82d6b6a85d0c7c387db512fed4b602923.tar.zst v2-ba614af82d6b6a85d0c7c387db512fed4b602923.zip |
Disable WebAuthn by default because it requires to configure the BASE_URL
Diffstat (limited to '')
-rw-r--r-- | internal/config/options.go | 2 | ||||
-rw-r--r-- | miniflux.1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/options.go b/internal/config/options.go index 5ee4ae69..626d01b5 100644 --- a/internal/config/options.go +++ b/internal/config/options.go @@ -81,7 +81,7 @@ const ( defaultMetricsPassword = "" defaultWatchdog = true defaultInvidiousInstance = "yewtu.be" - defaultWebAuthn = true + defaultWebAuthn = false ) var defaultHTTPClientUserAgent = "Mozilla/5.0 (compatible; Miniflux/" + version.Version + "; +https://miniflux.app)" @@ -514,7 +514,7 @@ Default is randomly generated at startup\&. .B WEBAUTHN Enable or disable WebAuthn/Passkey authentication\&. .br -Default is true\&. +Default is disabled\&. .SH AUTHORS .P |