Fix disabling object storage ACL in docker

pull/5975/head
Chocobozzz 2023-09-01 11:41:38 +02:00
parent 0216c3485d
commit d38a49463f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 9 additions and 0 deletions

View File

@ -47,6 +47,9 @@ OPENDKIM_DOMAINS=<MY DOMAIN>=peertube
# see https://github.com/wader/postfix-relay/pull/18
OPENDKIM_RequireSafeKeys=no
PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PUBLIC="public-read"
PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PRIVATE="private"
# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\
#PEERTUBE_SIGNUP_ENABLED=true
#PEERTUBE_TRANSCODING_ENABLED=true

View File

@ -71,6 +71,12 @@ storage:
# If not, peertube will fallback to the default fil
client_overrides: '../data/client-overrides/'
object_storage:
upload_acl:
public: null # Set to null here because we can't using env variables
private: null
log:
level: 'info' # 'debug' | 'info' | 'warn' | 'error'