mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 19:45:07 +00:00
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
test:
|
|
service: Disk
|
|
root: <%= Rails.root.join("tmp/storage") %>
|
|
|
|
local:
|
|
service: Disk
|
|
root: <%= Rails.root.join("storage") %>
|
|
|
|
# Cloudflare R2 (S3-compatible)
|
|
amazon:
|
|
service: S3
|
|
access_key_id: <%= ENV['R2_ACCESS_KEY_ID'] %>
|
|
secret_access_key: <%= ENV['R2_SECRET_ACCESS_KEY'] %>
|
|
region: auto
|
|
bucket: <%= ENV['R2_BUCKET_NAME'] %>
|
|
endpoint: <%= ENV['R2_ENDPOINT'] %> # Format: https://<account_id>.r2.cloudflarestorage.com
|
|
force_path_style: true
|
|
request_checksum_calculation: when_required
|
|
response_checksum_validation: when_required
|
|
|
|
# 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-<%= Rails.env %>
|
|
|
|
# Use bin/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-<%= Rails.env %>
|
|
|
|
# mirror:
|
|
# service: Mirror
|
|
# primary: local
|
|
# mirrors: [ amazon, google, microsoft ]
|