[DSC-403] Fixed S3 use relative path property name

This commit is contained in:
Luca Giamminonni
2022-01-11 17:13:10 +01:00
committed by Vincenzo Mecca
parent e7e45be3f3
commit 8b3ab2427d
3 changed files with 5 additions and 2 deletions

View File

@@ -254,6 +254,9 @@ assetstore.storename.0 = localStore
## Assetstore S3 configuration, only used if the above configuration
## is set to s3Store
# For using a relative path (xx/xx/xx/xxx...) set to true
assetstore.s3.useRelativePath =
# S3 bucket name to store assets in, default would generate a bucket
# based on the dspace host name
assetstore.s3.bucketName =

View File

@@ -9,7 +9,7 @@
assetstore.storename.0 = localStore
# For using a relative path (xx/xx/xx/xxx...) set to true, default it false
assetstore.useRelativePath = false
assetstore.s3.useRelativePath = false
## Assetstore S3 configuration, only used if the above configuration
## is set to s3Store

View File

@@ -21,7 +21,7 @@
<!-- AWS Security credentials, with policies for specified bucket -->
<property name="awsAccessKey" value="${assetstore.s3.awsAccessKey}"/>
<property name="awsSecretKey" value="${assetstore.s3.awsSecretKey}"/>
<property name="useRelativePath" value="${assetstore.useRelativePath}"/>
<property name="useRelativePath" value="${assetstore.s3.useRelativePath}"/>
<!-- S3 bucket name to store assets in. example: longsight-dspace-auk -->
<property name="bucketName" value="${assetstore.s3.bucketName}"/>