mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
[DSC-403] Fixed S3 use relative path property name
This commit is contained in:

committed by
Vincenzo Mecca

parent
e7e45be3f3
commit
8b3ab2427d
@@ -254,6 +254,9 @@ assetstore.storename.0 = localStore
|
|||||||
## Assetstore S3 configuration, only used if the above configuration
|
## Assetstore S3 configuration, only used if the above configuration
|
||||||
## is set to s3Store
|
## 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
|
# S3 bucket name to store assets in, default would generate a bucket
|
||||||
# based on the dspace host name
|
# based on the dspace host name
|
||||||
assetstore.s3.bucketName =
|
assetstore.s3.bucketName =
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
assetstore.storename.0 = localStore
|
assetstore.storename.0 = localStore
|
||||||
|
|
||||||
# For using a relative path (xx/xx/xx/xxx...) set to true, default it false
|
# 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
|
## Assetstore S3 configuration, only used if the above configuration
|
||||||
## is set to s3Store
|
## is set to s3Store
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
<!-- AWS Security credentials, with policies for specified bucket -->
|
<!-- AWS Security credentials, with policies for specified bucket -->
|
||||||
<property name="awsAccessKey" value="${assetstore.s3.awsAccessKey}"/>
|
<property name="awsAccessKey" value="${assetstore.s3.awsAccessKey}"/>
|
||||||
<property name="awsSecretKey" value="${assetstore.s3.awsSecretKey}"/>
|
<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 -->
|
<!-- S3 bucket name to store assets in. example: longsight-dspace-auk -->
|
||||||
<property name="bucketName" value="${assetstore.s3.bucketName}"/>
|
<property name="bucketName" value="${assetstore.s3.bucketName}"/>
|
||||||
|
Reference in New Issue
Block a user