From 1f1cdf6fe887ba36179c51fe36844a9b648f0475 Mon Sep 17 00:00:00 2001 From: Evan Zhang <31564969+zallaevan@users.noreply.github.com> Date: Tue, 21 May 2024 00:50:03 +0200 Subject: [PATCH] Amended typo: trailing space Trailing space before colon in the `settings.yml` has been fixed. --- README.md | 2 +- src/main/resources/settings.yml.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cbb262e..1c18f0f8 100644 --- a/README.md +++ b/README.md @@ -224,7 +224,7 @@ security: enableLogin: false # set to 'true' to enable login csrfDisabled: true # Set to 'true' to disable CSRF protection (not recommended for production) loginAttemptCount: 5 # lock user account after 5 tries - loginResetTimeMinutes : 120 # lock account for 2 hours after x attempts + loginResetTimeMinutes: 120 # lock account for 2 hours after x attempts # initialLogin: # username: "admin" # Initial username for the first login (these are defaulted) # password: "stirling" # Initial password for the first login diff --git a/src/main/resources/settings.yml.template b/src/main/resources/settings.yml.template index d771f9c9..c2a201ef 100644 --- a/src/main/resources/settings.yml.template +++ b/src/main/resources/settings.yml.template @@ -6,7 +6,7 @@ security: enableLogin: false # set to 'true' to enable login csrfDisabled: true # Set to 'true' to disable CSRF protection (not recommended for production) loginAttemptCount: 5 # lock user account after 5 tries - loginResetTimeMinutes : 120 # lock account for 2 hours after x attempts + loginResetTimeMinutes: 120 # lock account for 2 hours after x attempts # initialLogin: # username: "admin" # Initial username for the first login # password: "stirling" # Initial password for the first login