Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

feat: migrate WebDAV private key to Secrets Manager #188

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/autoload/config.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
'webdav' => [
// Private key used to sign JWT tokens when generating WebDAV links. (PEM Format)
// Can be a path to a .pem file or base64 encoded private key in PEM format.
'private_key' => '/etc/pki/tls/private/jwtRS256.pem',
'private_key' => '%webdav_jwt_private_key%',
// The default length in seconds the JWT is valid for.
'default_lifetime_seconds' => 21600,
// The URL pattern for a WebDAV URL. JWT followed by Document Path will be sprintf'ed into this value.
Expand Down Expand Up @@ -150,7 +150,7 @@
'port' => 6379,
],
'lib_options' => [
\Redis::OPT_SERIALIZER => \Redis::SERIALIZER_IGBINARY

Check failure on line 153 in config/autoload/config.global.php

View workflow job for this annotation

GitHub Actions / static-analysis / Psalm - 8.2

UndefinedConstant

config/autoload/config.global.php:153:47: UndefinedConstant: Constant Redis::SERIALIZER_IGBINARY is not defined (see https://psalm.dev/020)
],
'ttl' => 3600, //one hour, likely to be overridden based on use case
'namespace' => 'zfcache',
Expand Down
Loading