Merge pull request #3570 from t7tran/gcs-driver-typo

Correct driver code for Google Cloud Storage
This commit is contained in:
Rijk van Zanten
2021-01-04 10:42:58 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ STORAGE_LOCAL_ROOT="./uploads"
# STORAGE_DIGITALOCEAN_REGION="ams3"
## Google Cloud Storage Example (location name: Google)
# STORAGE_GOOGLE_DRIVER="gcl"
# STORAGE_GOOGLE_DRIVER="gcs"
# STORAGE_GOOGLE_PUBLIC_URL="https://cdn.example.com/"
# STORAGE_GOOGLE_KEY_FILENAME="abcdef"
# STORAGE_GOOGLE_BUCKET="my-files"

View File

@@ -225,7 +225,7 @@ but each must have a matching `<LOCATION>` configuration.<br>**Default: `local`*
For each of the storage locations listed, you must provide the following configuration:
- **`STORAGE_<LOCATION>_PUBLIC_URL`** — Location on the internet where the files are accessible
- **`STORAGE_<LOCATION>_DRIVER`** — Which driver to use, either `local`, `s3`, or `gcl`
- **`STORAGE_<LOCATION>_DRIVER`** — Which driver to use, either `local`, `s3`, or `gcs`
Based on your configured driver, you must also provide the following configurations.