From 15b0b7f7b5bcd8b70d9a7404f32318daf6d416f7 Mon Sep 17 00:00:00 2001 From: Sirios_Dev <26876994+SiriosDev@users.noreply.github.com> Date: Wed, 2 Aug 2023 21:53:13 +0200 Subject: [PATCH] Update README.md Fixed Typo Fixed typo: `"APP_KEY": 12 characters # This is your encryption key, don't lose it!` to `"APP_KEY": 32 characters # This is your encryption key, don't lose it!` --- fireflyiii/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fireflyiii/README.md b/fireflyiii/README.md index 6c62fb3f3..c9f0aa6c8 100644 --- a/fireflyiii/README.md +++ b/fireflyiii/README.md @@ -34,7 +34,7 @@ Options can be configured through two ways : ```yaml "CONFIG_LOCATION": location of the config.yaml # Sets the location of the config.yaml (see below) "DB_CONNECTION": "list(sqlite_internal|mariadb_addon|mysql|pgsql)" # Defines the type of database to use : sqlite (default, embedded in the addon) ; MariaDB (auto-detection if the MariaDB addon is installed and runs), and external databases that requires that the other DB_ fields are set (mysql and pgsql) -"APP_KEY": 12 characters # This is your encryption key, don't lose it! +"APP_KEY": 32 characters # This is your encryption key, don't lose it! "DB_HOST": "CHANGEME" # only needed if using a remote database "DB_PORT": "CHANGEME" # only needed if using a remote database "DB_DATABASE": "CHANGEME" # only needed if using a remote database