You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within that bucket, all assets in the /build directory (e.g. HTML, JS, CSS) are publicly accessible so users are able to visit the app and login
Within that bucket, all assets in the /store directory (e.g. user uploaded avatars) are only accessible to users logged into Parabol
Approach:
All asset URLs will get presigned before they are sent to the client. The presigned URL will have an expiration of 1 week.
Platform 1 will set an S3 Bucket policy that makes the /build directory public and the /store directory private. The AWS_SECRET_ACCESS_KEY will refer to an S3 User that has write permissions to that bucket
The text was updated successfully, but these errors were encountered:
<<BUCKET>>: name of the bucket in S3
<<ENV>> : name of the production environment, e.g. `pre-prod`, `production`, etc. it is the part following the last `/` in `CDN_BASE_URL`
Requirements (for S3):
/build
directory (e.g. HTML, JS, CSS) are publicly accessible so users are able to visit the app and login/store
directory (e.g. user uploaded avatars) are only accessible to users logged into ParabolApproach:
AWS_SECRET_ACCESS_KEY
will refer to an S3 User that has write permissions to that bucketThe text was updated successfully, but these errors were encountered: