Files
astuto/config/storage.yml
2025-01-09 21:22:24 +01:00

54 lines
1.4 KiB
YAML

test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
s3_private:
service: S3
public: false
endpoint: <%= ENV["S3_ENDPOINT"] %>
bucket: <%= ENV["S3_BUCKET"] %>
access_key_id: <%= ENV["S3_ACCESS_KEY_ID"] %>
secret_access_key: <%= ENV["S3_ACCESS_KEY_SECRET"] %>
region: <%= ENV.fetch("S3_REGION") { 'na' } %>
http_open_timeout: 5
http_read_timeout: 10
retry_limit: 3
s3_public:
service: S3
public: true
endpoint: <%= ENV["S3_ENDPOINT"] %>
bucket: <%= ENV["S3_BUCKET"] %>
access_key_id: <%= ENV["S3_ACCESS_KEY_ID"] %>
secret_access_key: <%= ENV["S3_ACCESS_KEY_SECRET"] %>
region: <%= ENV.fetch("S3_REGION") { 'na' } %>
http_open_timeout: 5
http_read_timeout: 10
retry_limit: 3
# Remember not to checkin your GCS keyfile to a repository
# google:
# service: GCS
# project: your_project
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
# bucket: your_own_bucket
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
# microsoft:
# service: AzureStorage
# storage_account_name: your_account_name
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
# container: your_container_name
# mirror:
# service: Mirror
# primary: local
# mirrors: [ amazon, google, microsoft ]