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 William Brown
parent f6d16ff08a
commit 9bd1fe1481
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

@ -23,7 +23,7 @@ bindaddress = "[::]:8443"
# The path to the kanidm database. # The path to the kanidm database.
db_path = "/data/kanidm.db" db_path = "/data/kanidm.db"
# #
# If you have a known filesystem, kanidm can tune the # If you have a known filesystem, kanidm can tune the
# database page size to match. Valid choices are: # database page size to match. Valid choices are:
# [zfs, other] # [zfs, other]
# If you are unsure about this leave it as the default # If you are unsure about this leave it as the default
@ -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"
# #