diff options
author | Asaf Bartov <asaf.bartov@gmail.com> | 2018-09-23 08:04:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 08:04:13 +0300 |
commit | a98dc2bf89c4739ad74ab3c5c91bfee0b94591a2 (patch) | |
tree | 2bcaec73418fe8b7db2e2a8a94d5c3017df753c4 /guides | |
parent | d3b952184d8bdb6154aff1f8bc3eda58046026f6 (diff) | |
download | rails-a98dc2bf89c4739ad74ab3c5c91bfee0b94591a2.tar.gz rails-a98dc2bf89c4739ad74ab3c5c91bfee0b94591a2.tar.bz2 rails-a98dc2bf89c4739ad74ab3c5c91bfee0b94591a2.zip |
Added mandatory region and bucket
The 'setup' section was misleadingly leaving out :bucket and :region in the sample, but servers don't start without them.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_storage_overview.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 1c15d075b9..71ba6184e0 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -58,6 +58,8 @@ amazon: service: S3 access_key_id: "" secret_access_key: "" + bucket: "" + region: "" # e.g. 'us-east-1' ``` Tell Active Storage which service to use by setting |