...
To enable the S3 storage engine, first find and set the following variables in your app_config
values.yaml
:
Code Block | ||
---|---|---|
| ||
fileStorageConfig: host: # enable storing uploads on the hosts file system enabled: false # Specify the absolute path to a directory on the filesystem where uploads should be stored path: $UPLOADS_DIR s3: enabled: true region: publicBucket: privateBucket: uploadsBucket: accessKey: secretKey: customDomain: |
...