Feature: adapt skeleton for wopi / jwt and secret/public keys in base64 format in production
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Julien Fastré 2023-01-13 13:31:11 +01:00
parent 99ec0b765f
commit 4157b4bb21
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
3 changed files with 10 additions and 6 deletions

View File

@ -0,0 +1,10 @@
lexik_jwt_authentication:
# in production, the secret must be located in an environment variable
# for converting the file to a raw variable, use this command:
#
# cat path/to/private_or_public.pem | base64 -w0
#
# then copy past the printed string into the dedicated environment variable
secret_key: '%env(base64:resolve:JWT_SECRET_KEY)%'
public_key: '%env(base64:resolve:JWT_PUBLIC_KEY)%'
pass_phrase: '%env(JWT_PASSPHRASE)%'

View File

@ -1,3 +1,2 @@
wopi:
server: "%env(resolve:WOPI_SERVER)%"
access_token_ttl: 0

View File

@ -35,11 +35,6 @@ services:
resource: '../src/Service/'
Chill\WopiBundle\Service\Wopi\ChillWopi:
decorates: ChampsLibres\WopiLib\Contract\Service\WopiInterface
arguments:
$cache: '@cache.user_data'
ChampsLibres\WopiLib\Service\DocumentLockManager:
arguments:
$cache: '@cache.user_data'