diff options
author | Chocobozzz <me@florianbigard.com> | 2022-10-19 10:43:53 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-10-24 14:48:24 +0200 |
commit | 9ab330b90decf4edf152ff8e1d2948c065766b2c (patch) | |
tree | 29d924f50f7307e8e828a57ecb9ea78623487ce0 /config/production.yaml.example | |
parent | 3545e72c686ff1725bbdfd8d16d693e2f4aa75a3 (diff) | |
download | PeerTube-9ab330b90decf4edf152ff8e1d2948c065766b2c.tar.gz PeerTube-9ab330b90decf4edf152ff8e1d2948c065766b2c.tar.zst PeerTube-9ab330b90decf4edf152ff8e1d2948c065766b2c.zip |
Use private ACL for private videos in s3
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r-- | config/production.yaml.example | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/production.yaml.example b/config/production.yaml.example index 48613e1c3..167d23af8 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -146,8 +146,11 @@ object_storage: | |||
146 | 146 | ||
147 | region: 'us-east-1' | 147 | region: 'us-east-1' |
148 | 148 | ||
149 | # Set this ACL on each uploaded object | 149 | upload_acl: |
150 | upload_acl: 'public-read' | 150 | # Set this ACL on each uploaded object of public/unlisted videos |
151 | public: 'public-read' | ||
152 | # Set this ACL on each uploaded object of private/internal videos | ||
153 | private: 'private' | ||
151 | 154 | ||
152 | credentials: | 155 | credentials: |
153 | # You can also use AWS_ACCESS_KEY_ID env variable | 156 | # You can also use AWS_ACCESS_KEY_ID env variable |