From 9bd1fe14816209a0cf8253984da01aa5c4dce885 Mon Sep 17 00:00:00 2001 From: George Wu Date: Tue, 19 Nov 2024 22:57:49 -0800 Subject: [PATCH] Update and fix server config files in examples. (#3225) --- examples/server.toml | 2 +- examples/server_container.toml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/server.toml b/examples/server.toml index c8e9b25be..e0c2f7e7d 100644 --- a/examples/server.toml +++ b/examples/server.toml @@ -72,7 +72,7 @@ tls_key = "/var/lib/private/kanidm/key.pem" # credentials for accounts including but not limited to # webauthn, oauth tokens, and more. # If you change this value you *must* run -# `kanidmd domain_name_change` immediately after. +# `kanidmd domain rename` immediately after. domain = "idm.example.com" # # The origin for webauthn. This is the url to the server, diff --git a/examples/server_container.toml b/examples/server_container.toml index 8692d8102..1378351e8 100644 --- a/examples/server_container.toml +++ b/examples/server_container.toml @@ -23,7 +23,7 @@ bindaddress = "[::]:8443" # The path to the kanidm database. 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: # [zfs, other] # 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. # 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_key = "/data/key.pem" #