From 8cf2f6e9b001a6310d90fecc057385674fb1645f Mon Sep 17 00:00:00 2001 From: Greg Wong Date: Thu, 9 Nov 2023 23:20:43 +0800 Subject: [PATCH] docs: use single quotes for consistency across other parts of the doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45537c3..df16324 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` |