-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from bradleyg/digital-ocean-support
Support other S3 compatible services.
- Loading branch information
Showing
11 changed files
with
347 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_STORAGE_BUCKET_NAME= | ||
S3DIRECT_REGION= | ||
AWS_S3_REGION_NAME= | ||
AWS_S3_ENDPOINT_URL= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | ||
<CORSRule> | ||
<AllowedOrigin>http://localhost:8000</AllowedOrigin> | ||
<AllowedMethod>GET</AllowedMethod> | ||
<AllowedMethod>HEAD</AllowedMethod> | ||
<AllowedMethod>PUT</AllowedMethod> | ||
<AllowedMethod>POST</AllowedMethod> | ||
<MaxAgeSeconds>3000</MaxAgeSeconds> | ||
<ExposeHeader>ETag</ExposeHeader> | ||
<AllowedHeader>*</AllowedHeader> | ||
</CORSRule> | ||
</CORSConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.