diff options
author | Robert Riemann <robert@riemann.cc> | 2024-12-05 19:25:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-05 19:25:36 +0100 |
commit | ab8fdad6ca2b7485c2777941ed17ae326fb94e5d (patch) | |
tree | 4df24b71abd1e079d9778b5423a2788e5101f788 | |
parent | bca864d76d1367a978aa0185a1085b6ec54ff6dd (diff) | |
download | nextcloud-server-ab8fdad6ca2b7485c2777941ed17ae326fb94e5d.tar.gz nextcloud-server-ab8fdad6ca2b7485c2777941ed17ae326fb94e5d.zip |
add sse_c_key from S3 object storage properties config to list of sensitive values
Signed-off-by: Robert Riemann <robert@riemann.cc>
-rw-r--r-- | lib/private/SystemConfig.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index 5818f78f962..d3fd1f2ab04 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -73,6 +73,7 @@ class SystemConfig { // S3 'key' => true, 'secret' => true, + 'sse_c_key' => true, // Swift v2 'username' => true, 'password' => true, |