Update and fix server config files in examples. (#3225)

This commit is contained in:
George Wu 2024-11-19 22:57:49 -08:00 committed by GitHub
parent ed38e92448
commit 505e7d9530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -72,7 +72,7 @@ tls_key = "/var/lib/private/kanidm/key.pem"
# credentials for accounts including but not limited to # credentials for accounts including but not limited to
# webauthn, oauth tokens, and more. # webauthn, oauth tokens, and more.
# If you change this value you *must* run # If you change this value you *must* run
# `kanidmd domain_name_change` immediately after. # `kanidmd domain rename` immediately after.
domain = "idm.example.com" domain = "idm.example.com"
# #
# The origin for webauthn. This is the url to the server, # The origin for webauthn. This is the url to the server,

View file

@ -44,7 +44,9 @@ db_path = "/data/kanidm.db"
# memory pressure on your system. # memory pressure on your system.
# db_arc_size = 2048 # db_arc_size = 2048
# #
# TLS chain and key in pem format. Both must be present # TLS chain and key in pem format. Both must be present.
# If the server receives a SIGHUP, these files will be
# re-read and reloaded if their content is valid.
tls_chain = "/data/chain.pem" tls_chain = "/data/chain.pem"
tls_key = "/data/key.pem" tls_key = "/data/key.pem"
# #