|
|
@ -16,12 +16,12 @@ namespace Squidex.Infrastructure.Assets |
|
|
// From: https://console.aws.amazon.com/iam/home?region=eu-central-1#/users/s3?section=security_credentials
|
|
|
// From: https://console.aws.amazon.com/iam/home?region=eu-central-1#/users/s3?section=security_credentials
|
|
|
AssetStore = new AmazonS3AssetStore(new AmazonS3Options |
|
|
AssetStore = new AmazonS3AssetStore(new AmazonS3Options |
|
|
{ |
|
|
{ |
|
|
AccessKey = "AKIAYR4IRKRWJVE7BEUV", |
|
|
AccessKey = "key", |
|
|
Bucket = "squidex-test", |
|
|
Bucket = "squidex-test", |
|
|
BucketFolder = "squidex-assets", |
|
|
BucketFolder = "squidex-assets", |
|
|
ForcePathStyle = false, |
|
|
ForcePathStyle = false, |
|
|
RegionName = "eu-central-1", |
|
|
RegionName = "eu-central-1", |
|
|
SecretKey = "m7fJ0QzqcQ+2RGaYM7eGRs2QC0efOD+0oHn5UUho", |
|
|
SecretKey = "secret", |
|
|
ServiceUrl = null |
|
|
ServiceUrl = null |
|
|
}); |
|
|
}); |
|
|
AssetStore.InitializeAsync().Wait(); |
|
|
AssetStore.InitializeAsync().Wait(); |
|
|
|