aboutsummaryrefslogtreecommitdiff
path: root/internal/config/parser.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/parser.go')
-rw-r--r--internal/config/parser.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/parser.go b/internal/config/parser.go
index f354e5b5..454d2c99 100644
--- a/internal/config/parser.go
+++ b/internal/config/parser.go
@@ -244,6 +244,8 @@ func (p *Parser) parseLines(lines []string) (err error) {
randomKey := make([]byte, 16)
rand.Read(randomKey)
p.opts.proxyPrivateKey = parseBytes(value, randomKey)
+ case "WEBAUTHN":
+ p.opts.webAuthn = parseBool(value, defaultWebAuthn)
}
}