diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-04-08 09:36:04 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-04-08 09:36:04 +0300 |
| commit | eedc1460e5dadb00a731c1974642a4db7ab30868 (patch) | |
| tree | d00876cda056fa5201365d3e0760317b7090b40f /classes/Config.php | |
| parent | 25d3ce4ee8f411a19c3a0e69ebb5c575c16243a8 (diff) | |
support transparent encryption for feed passwords, bump schema to drop length limit of ttrss_feeds.auth_pass
Diffstat (limited to 'classes/Config.php')
| -rw-r--r-- | classes/Config.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/Config.php b/classes/Config.php index e906419dc..5098bfe68 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -6,7 +6,7 @@ class Config { const T_STRING = 2; const T_INT = 3; - const SCHEMA_VERSION = 147; + const SCHEMA_VERSION = 148; /** override default values, defined below in _DEFAULTS[], prefixing with _ENVVAR_PREFIX: * @@ -192,7 +192,8 @@ class Config { /** disables login form controls except HOOK_LOGINFORM_ADDITIONAL_BUTTONS (for SSO providers), also prevents logging in through auth_internal */ const DISABLE_LOGIN_FORM = "DISABLE_LOGIN_FORM"; - /** optional key to transparently encrypt sensitive data (currently limited to sessions); key is a 32 byte hex string may be generated using update.php --gen-encryption-key */ + /** optional key to transparently encrypt sensitive data (currently limited to sessions and feed passwords), + * key is a 32 byte hex string which may be generated using `update.php --gen-encryption-key` */ const ENCRYPTION_KEY = "ENCRYPTION_KEY"; /** default values for all global configuration options */ |