diff options
author | George Claghorn <george.claghorn@gmail.com> | 2018-01-15 13:06:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 13:06:17 -0500 |
commit | c2ba530c43244b5b60fd629f61cd8b44c43ecda9 (patch) | |
tree | 76c572f419a8e30b4ba2d2ae22570844ba28361e /guides | |
parent | d8e7d6b03c50f4f01c333461c46666d8210e2c17 (diff) | |
download | rails-c2ba530c43244b5b60fd629f61cd8b44c43ecda9.tar.gz rails-c2ba530c43244b5b60fd629f61cd8b44c43ecda9.tar.bz2 rails-c2ba530c43244b5b60fd629f61cd8b44c43ecda9.zip |
Extract content types from blob data
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_storage_overview.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index f45dbdee3e..c5bd09ead6 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -49,10 +49,12 @@ below declares three services named `local`, `test`, and `amazon`: local: service: Disk root: <%= Rails.root.join("storage") %> + host: http://localhost:3000 test: service: Disk root: <%= Rails.root.join("tmp/storage") %> + host: http://localhost:3000 amazon: service: S3 @@ -91,6 +93,7 @@ Declare a Disk service in `config/storage.yml`: local: service: Disk root: <%= Rails.root.join("storage") %> + host: http://localhost:3000 ``` ### Amazon S3 Service |