From 1a6b4521b7f0fada8667063a0aee4d8b4ec1cc11 Mon Sep 17 00:00:00 2001 From: Greg Wong Date: Thu, 9 Nov 2023 23:17:48 +0800 Subject: [PATCH] docs: fix formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 719a435..45537c3 100644 --- a/README.md +++ b/README.md @@ -229,7 +229,7 @@ Some of the following settings are related to how this module operates. The rest | **METADATA\_LOCAL\_FILE\_PATH** | SAML2 metadata configuration file path | `str` | `None` | `/path/to/the/metadata.xml` | | **KEY_FILE** | SAML2 private key file path | `str` | `None` | `/path/to/the/key.pem` | | **CERT_FILE** | SAML2 public certificate file path | `str` | `None` | `/path/to/the/cert.pem` | -| **ENCRYPTION_KEYPAIRS** | Required for handling encrypted assertions. Will be automatically set if both `KEY_FILE` and `CERT_FILE` are set. | `list` | Not set. | [ { "key_file": '[The key file path]', "cert_file": '[The certificate file path]' } ] | +| **ENCRYPTION_KEYPAIRS** | Required for handling encrypted assertions. Will be automatically set if both `KEY_FILE` and `CERT_FILE` are set. | `list` | Not set. | `[ { "key_file": '[The key file path]', "cert_file": '[The certificate file path]' } ]` | | **DEBUG** | Send debug information to a log file | `bool` | `False` | | | **LOGGING** | Logging configuration dictionary | `dict` | Not set. | | | **DEFAULT\_NEXT\_URL** | Custom target redirect URL after the user get logged in. Default to /admin if not set. This setting will be overwritten if you have parameter `?next=` specificed in the login URL. | `str` | `admin:index` | `https://app.example.com/account/login` |