mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
34 lines
1 KiB
YAML
34 lines
1 KiB
YAML
test:
|
|
service: CustomDisk
|
|
root: <%= Rails.root.join("tmp/storage") %>
|
|
|
|
local:
|
|
service: CustomDisk
|
|
root: <%= Rails.root.join("storage") %>
|
|
|
|
amazon:
|
|
service: CustomS3
|
|
access_key_id: <%= ENV["AWS_ACCESS_KEY_ID"] %>
|
|
secret_access_key: <%= ENV["AWS_SECRET_ACCESS_KEY"] %>
|
|
region: <%= ENV["S3_REGION"] || ENV["AWS_REGION"] %>
|
|
bucket: <%= ENV["S3_BUCKET"] %>
|
|
subfolder: <%= ENV["S3_SUBFOLDER"] %>
|
|
|
|
# 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 ]
|