aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/app/templates/config/storage.yml
blob: 522048701c91f538ecba31bff8e7886591fd1831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
test:
  service: Disk
  root: <%%= Rails.root.join("tmp/storage") %>

local:
  service: Disk
  root: <%%= Rails.root.join("storage") %>

# Use rails secrets:edit to set the AWS secrets (as shared:aws:access_key_id|secret_access_key)
# amazon:
#   service: S3
#   access_key_id: <%%= Rails.application.secrets.dig(:aws, :access_key_id) %>
#   secret_access_key: <%%= Rails.application.secrets.dig(:aws, :secret_access_key) %>
#   region: us-east-1
#   bucket: your_own_bucket

# Remember not to checkin your GCS keyfile to a repository
# google:
#   service: GCS
#   project: your_project
#   keyfile: <%%= Rails.root.join("path/to/gcs.keyfile") %>
#   bucket: your_own_bucket

# Use rails secrets:edit to set the Azure secret (as shared:azure:storage_access_key)
# microsoft:
#   service: Azure
#   path: your_azure_storage_path
#   storage_account_name: your_account_name
#   storage_access_key: <%%= Rails.application.secrets.dig(:azure, :secret_access_key) %>
#   container: your_container_name

# mirror:
#   service: Mirror
#   primary: local
#   mirrors: [ amazon, google, microsoft ]