aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-09-01 11:41:38 +0200
committerChocobozzz <me@florianbigard.com>2023-09-01 11:41:38 +0200
commitd38a49463ffa994440d54561d8dc78263e3e0b6d (patch)
treee6491a9d4e7ee29d4ab4259bbe6feebced0e1ddf /support
parent0216c3485d81e85c9b6a7760e9a2cf8879420da6 (diff)
downloadPeerTube-d38a49463ffa994440d54561d8dc78263e3e0b6d.tar.gz
PeerTube-d38a49463ffa994440d54561d8dc78263e3e0b6d.tar.zst
PeerTube-d38a49463ffa994440d54561d8dc78263e3e0b6d.zip
Fix disabling object storage ACL in docker
Diffstat (limited to 'support')
-rw-r--r--support/docker/production/.env3
-rw-r--r--support/docker/production/config/production.yaml6
2 files changed, 9 insertions, 0 deletions
diff --git a/support/docker/production/.env b/support/docker/production/.env
index 5b3b366f5..3fc6aa301 100644
--- a/support/docker/production/.env
+++ b/support/docker/production/.env
@@ -47,6 +47,9 @@ OPENDKIM_DOMAINS=<MY DOMAIN>=peertube
47# see https://github.com/wader/postfix-relay/pull/18 47# see https://github.com/wader/postfix-relay/pull/18
48OPENDKIM_RequireSafeKeys=no 48OPENDKIM_RequireSafeKeys=no
49 49
50PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PUBLIC="public-read"
51PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PRIVATE="private"
52
50# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\ 53# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\
51#PEERTUBE_SIGNUP_ENABLED=true 54#PEERTUBE_SIGNUP_ENABLED=true
52#PEERTUBE_TRANSCODING_ENABLED=true 55#PEERTUBE_TRANSCODING_ENABLED=true
diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml
index 046301a1e..52d2f8f39 100644
--- a/support/docker/production/config/production.yaml
+++ b/support/docker/production/config/production.yaml
@@ -71,6 +71,12 @@ storage:
71 # If not, peertube will fallback to the default fil 71 # If not, peertube will fallback to the default fil
72 client_overrides: '../data/client-overrides/' 72 client_overrides: '../data/client-overrides/'
73 73
74
75object_storage:
76 upload_acl:
77 public: null # Set to null here because we can't using env variables
78 private: null
79
74log: 80log:
75 level: 'info' # 'debug' | 'info' | 'warn' | 'error' 81 level: 'info' # 'debug' | 'info' | 'warn' | 'error'
76 82