From 8055908c6d131acb51f5456e7cf6d94a84573531 Mon Sep 17 00:00:00 2001 From: bain Date: Sun, 25 Feb 2024 19:01:59 +0100 Subject: [PATCH] add sample config --- config.sample.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.sample.toml diff --git a/config.sample.toml b/config.sample.toml new file mode 100644 index 0000000..83a31b7 --- /dev/null +++ b/config.sample.toml @@ -0,0 +1,13 @@ +host = "0.0.0.0" +port = 8000 +issuer_uri = "http://localhost:8000/" +issuer_name = "My Issuer" +salt = "SOMETHING SOMETHING" +rsa_key_file = "rsa-key.pk8" + +[clients] + +[clients.a1] +name = "a1.example.com" +client_secret = "SECRET" +redirect_uris = ["https://a1.example.com/cb"]