Fix disabling object storage ACL in docker
This commit is contained in:
parent
0216c3485d
commit
d38a49463f
|
@ -47,6 +47,9 @@ OPENDKIM_DOMAINS=<MY DOMAIN>=peertube
|
||||||
# see https://github.com/wader/postfix-relay/pull/18
|
# see https://github.com/wader/postfix-relay/pull/18
|
||||||
OPENDKIM_RequireSafeKeys=no
|
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 /!\
|
# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\
|
||||||
#PEERTUBE_SIGNUP_ENABLED=true
|
#PEERTUBE_SIGNUP_ENABLED=true
|
||||||
#PEERTUBE_TRANSCODING_ENABLED=true
|
#PEERTUBE_TRANSCODING_ENABLED=true
|
||||||
|
|
|
@ -71,6 +71,12 @@ storage:
|
||||||
# If not, peertube will fallback to the default fil
|
# If not, peertube will fallback to the default fil
|
||||||
client_overrides: '../data/client-overrides/'
|
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:
|
log:
|
||||||
level: 'info' # 'debug' | 'info' | 'warn' | 'error'
|
level: 'info' # 'debug' | 'info' | 'warn' | 'error'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue