diff options
author | Chocobozzz <me@florianbigard.com> | 2023-09-01 11:41:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-09-01 11:41:38 +0200 |
commit | d38a49463ffa994440d54561d8dc78263e3e0b6d (patch) | |
tree | e6491a9d4e7ee29d4ab4259bbe6feebced0e1ddf /support | |
parent | 0216c3485d81e85c9b6a7760e9a2cf8879420da6 (diff) | |
download | PeerTube-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/.env | 3 | ||||
-rw-r--r-- | support/docker/production/config/production.yaml | 6 |
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 |
48 | OPENDKIM_RequireSafeKeys=no | 48 | OPENDKIM_RequireSafeKeys=no |
49 | 49 | ||
50 | PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PUBLIC="public-read" | ||
51 | PEERTUBE_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 | |||
75 | object_storage: | ||
76 | upload_acl: | ||
77 | public: null # Set to null here because we can't using env variables | ||
78 | private: null | ||
79 | |||
74 | log: | 80 | log: |
75 | level: 'info' # 'debug' | 'info' | 'warn' | 'error' | 81 | level: 'info' # 'debug' | 'info' | 'warn' | 'error' |
76 | 82 | ||