config changes
This commit is contained in:
parent
bd06df58c5
commit
a243427b4b
|
@ -0,0 +1,4 @@
|
||||||
|
dashboard:
|
||||||
|
reference-type-counters:
|
||||||
|
- "7eeffb98-58fb-4921-82ec-e27f32f8e738"
|
||||||
|
- "5b9c284f-f041-4995-96cc-fad7ad13289c"
|
|
@ -1,4 +1,2 @@
|
||||||
dashboard:
|
dashboard:
|
||||||
reference-type-counters:
|
reference-type-counters: []
|
||||||
- "7eeffb98-58fb-4921-82ec-e27f32f8e738"
|
|
||||||
- "5b9c284f-f041-4995-96cc-fad7ad13289c"
|
|
|
@ -1,9 +1,3 @@
|
||||||
#database:
|
|
||||||
# driver-class-name: org.postgresql.Driver
|
|
||||||
# lock-fail-interval: 120000
|
|
||||||
# url: ${DB_URL:}
|
|
||||||
# username: ${DB_USER:}
|
|
||||||
# password: ${DB_PASS:}
|
|
||||||
spring:
|
spring:
|
||||||
jpa:
|
jpa:
|
||||||
properties:
|
properties:
|
||||||
|
@ -19,9 +13,9 @@ spring:
|
||||||
physical-strategy: org.opencdmp.data.namingstrategy.PrefixPhysicalNamingStrategy
|
physical-strategy: org.opencdmp.data.namingstrategy.PrefixPhysicalNamingStrategy
|
||||||
implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
|
implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
|
||||||
datasource:
|
datasource:
|
||||||
url: ${DB_URL:}
|
url: ${DB_URL}
|
||||||
username: ${DB_USER:}
|
username: ${DB_USER}
|
||||||
password: ${DB_PASS:}
|
password: ${DB_PASS}
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
hikari:
|
hikari:
|
||||||
connection-timeout: 30000
|
connection-timeout: 30000
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
elastic:
|
elastic:
|
||||||
enabled: ${ELASTIC_ENABLED:}
|
enabled: ${ELASTIC_ENABLED}
|
||||||
hosts:
|
hosts:
|
||||||
- ${ELASTIC_HOST:}
|
- ${ELASTIC_HOST}
|
||||||
username: ${ELASTIC_USER:}
|
username: ${ELASTIC_USER}
|
||||||
password: ${ELASTIC_PASS:}
|
password: ${ELASTIC_PASS}
|
||||||
useSSL: ${ELASTIC_USE_SSL:}
|
useSSL: ${ELASTIC_USE_SSL}
|
||||||
socketTimeoutMillis: 30000
|
socketTimeoutMillis: 30000
|
||||||
connectTimeoutMillis: 30000
|
connectTimeoutMillis: 30000
|
||||||
defaultResultSize: 100
|
defaultResultSize: 100
|
||||||
|
@ -14,8 +14,8 @@ elastic:
|
||||||
defaultCompositeAggregationResultSize: 200000
|
defaultCompositeAggregationResultSize: 200000
|
||||||
disableHostnameVerifier: false
|
disableHostnameVerifier: false
|
||||||
app-elastic:
|
app-elastic:
|
||||||
enabled: ${ELASTIC_ENABLED:}
|
enabled: ${ELASTIC_ENABLED}
|
||||||
dmpIndexName: ${ELASTIC_DMP_INDEX:}
|
dmpIndexName: ${ELASTIC_DMP_INDEX}
|
||||||
descriptionIndexName: ${ELASTIC_DESCRIPTION_INDEX:}
|
descriptionIndexName: ${ELASTIC_DESCRIPTION_INDEX}
|
||||||
enableIcuAnalysisPlugin: false
|
enableIcuAnalysisPlugin: false
|
||||||
resetBatchSize: 1000
|
resetBatchSize: 1000
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
pdf:
|
|
||||||
converter:
|
|
||||||
url: ${PDF_CONVERTER_URL:}
|
|
||||||
|
|
||||||
publicapi:
|
publicapi:
|
||||||
host: devel.opendmp.eu
|
host: devel.opendmp.eu
|
||||||
basePath: /srv
|
basePath: /srv
|
||||||
|
|
|
@ -1,36 +1,2 @@
|
||||||
logging:
|
logging:
|
||||||
config: classpath:logging/logback-${spring.profiles.active}.xml
|
config: classpath:logging/logback-${spring.profiles.active}.xml
|
||||||
context:
|
|
||||||
request:
|
|
||||||
requestIdKey: req.id
|
|
||||||
requestRemoteHostKey: req.remoteHost
|
|
||||||
requestUriKey: req.requestURI
|
|
||||||
requestQueryStringKey: req.queryString
|
|
||||||
requestUrlKey : req.requestURL
|
|
||||||
requestMethodKey: req.method
|
|
||||||
requestUserAgentKey: req.userAgent
|
|
||||||
requestForwardedForKey: req.xForwardedFor
|
|
||||||
requestSchemeKey: req.scheme
|
|
||||||
requestRemoteAddressKey: req.remoteAddr
|
|
||||||
requestRemotePortKey: req.remotePort
|
|
||||||
requestRemoteUserKey: req.remoteUser
|
|
||||||
principal:
|
|
||||||
subjectKey: usr.subject
|
|
||||||
nameKey: usr.name
|
|
||||||
clientKey: usr.client
|
|
||||||
audit:
|
|
||||||
enable: true
|
|
||||||
requestRemoteHostKey: req.remoteHost
|
|
||||||
requestUriKey: req.requestURI
|
|
||||||
requestQueryStringKey: req.queryString
|
|
||||||
requestUrlKey : req.requestURL
|
|
||||||
requestMethodKey: req.method
|
|
||||||
requestUserAgentKey: req.userAgent
|
|
||||||
requestForwardedForKey: req.xForwardedFor
|
|
||||||
requestSchemeKey: req.scheme
|
|
||||||
requestRemoteAddressKey: req.remoteAddr
|
|
||||||
requestRemotePortKey: req.remotePort
|
|
||||||
requestRemoteUserKey: req.remoteUser
|
|
||||||
principalSubjectKey: usr.subject
|
|
||||||
principalNameKey: usr.name
|
|
||||||
principalClientKey: usr.client
|
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
notification:
|
||||||
|
dmpInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4
|
||||||
|
dmpInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc
|
||||||
|
dmpModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB
|
||||||
|
dmpFinalisedType: 90DB0B46-42DE-BD89-AEBF-6F27EFEB256E
|
||||||
|
descriptionModifiedType: 4FDBFA80-7A71-4A69-B854-67CBB70648F1
|
||||||
|
descriptionFinalisedType: 33790bad-94d4-488a-8ee2-7f6295ca18ea
|
||||||
|
mergeAccountConfirmationType: BFE68845-CB05-4C5A-A03D-29161A7C9660
|
||||||
|
removeCredentialConfirmationType: C9BC3F16-057E-4BBA-8A5F-36BD835E5604
|
||||||
|
dmpDepositType: 55736F7A-83AB-4190-AF43-9D031A6F9612
|
||||||
|
descriptionTemplateInvitationType: 223BB607-EFA1-4CE7-99EC-4BEABFEF9A8B
|
||||||
|
contactSupportType: 5B1D6C52-88F9-418B-9B8A-6F1F963D9EAD
|
||||||
|
publicContactSupportType: B542B606-ACC6-4629-ADEF-4D8EE2F01222
|
||||||
|
contactSupportEmail: support@dmp.com
|
|
@ -1,15 +1,2 @@
|
||||||
notification:
|
notification:
|
||||||
dmpInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4
|
|
||||||
dmpInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc
|
|
||||||
dmpModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB
|
|
||||||
dmpFinalisedType: 90DB0B46-42DE-BD89-AEBF-6F27EFEB256E
|
|
||||||
descriptionModifiedType: 4FDBFA80-7A71-4A69-B854-67CBB70648F1
|
|
||||||
descriptionFinalisedType: 33790bad-94d4-488a-8ee2-7f6295ca18ea
|
|
||||||
mergeAccountConfirmationType: BFE68845-CB05-4C5A-A03D-29161A7C9660
|
|
||||||
removeCredentialConfirmationType: C9BC3F16-057E-4BBA-8A5F-36BD835E5604
|
|
||||||
dmpDepositType: 55736F7A-83AB-4190-AF43-9D031A6F9612
|
|
||||||
descriptionTemplateInvitationType: 223BB607-EFA1-4CE7-99EC-4BEABFEF9A8B
|
|
||||||
contactSupportType: 5B1D6C52-88F9-418B-9B8A-6F1F963D9EAD
|
|
||||||
publicContactSupportType: B542B606-ACC6-4629-ADEF-4D8EE2F01222
|
|
||||||
contactSupportEmail: support@dmp.com
|
|
||||||
emailExpirationTimeSeconds: 14400
|
emailExpirationTimeSeconds: 14400
|
|
@ -0,0 +1,10 @@
|
||||||
|
public-api:
|
||||||
|
reference-type-map:
|
||||||
|
funderTypeId: "538928bb-c7c6-452e-b66d-08e539f5f082"
|
||||||
|
grantTypeId: "5b9c284f-f041-4995-96cc-fad7ad13289c"
|
||||||
|
registryTypeId: "2beacaad-3223-43ad-ad99-1e5f21328e7b"
|
||||||
|
serviceTypeId: "9ec2000d-95c7-452e-b356-755fc8e2574c"
|
||||||
|
dataRepositoryTypeId: "d26b64ba-fda0-4b14-b3ef-9856a492d55a"
|
||||||
|
datasetTypeId: "a3ce0fb2-d72c-48bb-b322-7401940cb802"
|
||||||
|
researcherTypeId: "5a2112e7-ea99-4cfe-98a1-68665e26726e"
|
||||||
|
organizationTypeId: "7eeffb98-58fb-4921-82ec-e27f32f8e738"
|
|
@ -1,10 +1,2 @@
|
||||||
public-api:
|
public-api:
|
||||||
reference-type-map:
|
reference-type-map: []
|
||||||
funderTypeId: "538928bb-c7c6-452e-b66d-08e539f5f082"
|
|
||||||
grantTypeId: "5b9c284f-f041-4995-96cc-fad7ad13289c"
|
|
||||||
registryTypeId: "2beacaad-3223-43ad-ad99-1e5f21328e7b"
|
|
||||||
serviceTypeId: "9ec2000d-95c7-452e-b356-755fc8e2574c"
|
|
||||||
dataRepositoryTypeId: "d26b64ba-fda0-4b14-b3ef-9856a492d55a"
|
|
||||||
datasetTypeId: "a3ce0fb2-d72c-48bb-b322-7401940cb802"
|
|
||||||
researcherTypeId: "5a2112e7-ea99-4cfe-98a1-68665e26726e"
|
|
||||||
organizationTypeId: "7eeffb98-58fb-4921-82ec-e27f32f8e738"
|
|
|
@ -10,6 +10,6 @@ web:
|
||||||
token-type: JWT #| opaque
|
token-type: JWT #| opaque
|
||||||
jwt:
|
jwt:
|
||||||
claims: [ role, x-role ]
|
claims: [ role, x-role ]
|
||||||
issuer-uri: ${IDP_ISSUER_URI:}
|
issuer-uri: ${IDP_ISSUER_URI}
|
||||||
audiences: [ "dmp_web" ]
|
audiences: [ "dmp_web" ]
|
||||||
validIssuer: ${IDP_ISSUER_URI:}
|
validIssuer: ${IDP_ISSUER_URI}
|
Loading…
Reference in New Issue