diff --git a/web/src/main/resources/config/security-dev.yml b/web/src/main/resources/config/security-dev.yml index d85a91f..ab5efd0 100644 --- a/web/src/main/resources/config/security-dev.yml +++ b/web/src/main/resources/config/security-dev.yml @@ -3,5 +3,4 @@ web: idp: resource: jwt: - audiences: [ "dmp_zenodo_bridge" ] - validIssuer: ${IDP_ISSUER_URI:} \ No newline at end of file + audiences: [ "dmp_zenodo_bridge" ] \ No newline at end of file diff --git a/web/src/main/resources/config/security.yml b/web/src/main/resources/config/security.yml index fc4b49f..8d51e5d 100644 --- a/web/src/main/resources/config/security.yml +++ b/web/src/main/resources/config/security.yml @@ -10,4 +10,5 @@ web: token-type: JWT #| opaque jwt: claims: [ role, x-role ] - issuer-uri: ${IDP_ISSUER_URI:} \ No newline at end of file + issuer-uri: ${IDP_ISSUER_URI} + validIssuer: ${IDP_ISSUER_URI} \ No newline at end of file diff --git a/web/src/main/resources/config/server.yml b/web/src/main/resources/config/server.yml index f0753bd..b2b348c 100644 --- a/web/src/main/resources/config/server.yml +++ b/web/src/main/resources/config/server.yml @@ -1,5 +1,5 @@ server: - port: ${WEB_PORT} + port: 8082 tomcat: threads: max: 20 diff --git a/web/src/main/resources/config/storage.yml b/web/src/main/resources/config/storage.yml new file mode 100644 index 0000000..283aecd --- /dev/null +++ b/web/src/main/resources/config/storage.yml @@ -0,0 +1,4 @@ +file: + storage: + temp: ${STORAGE_PATH}/tmp + transient-path: ${STORAGE_PATH}/shared \ No newline at end of file diff --git a/web/src/main/resources/config/zenodo-dev.yml b/web/src/main/resources/config/zenodo-dev.yml index 7ad5959..c87e906 100644 --- a/web/src/main/resources/config/zenodo-dev.yml +++ b/web/src/main/resources/config/zenodo-dev.yml @@ -3,16 +3,6 @@ zenodo: affiliation: ARGOS domain: https://argos.openaire.eu/ logo: classpath:zenodo.jpg - organizationReferenceCode: "organisations" - grantReferenceCode: "grants" - funderReferenceCode: "funders" - researcherReferenceCode: "researchers" - licenceReferenceCode: "licenses" - projectReferenceCode: "projects" - datasetReferenceCode: "datasets" - publicationReferenceCode: "publications" - openaireGrantSourceCode: "openaire" - orcidResearcherSourceCode: "ORCID" depositConfiguration: deposit-type: 2 repository-id: Zenodo diff --git a/web/src/main/resources/config/zenodo.yml b/web/src/main/resources/config/zenodo.yml index 4d561fd..0ddfbfb 100644 --- a/web/src/main/resources/config/zenodo.yml +++ b/web/src/main/resources/config/zenodo.yml @@ -1 +1,12 @@ zenodo: + organizationReferenceCode: "organisations" + grantReferenceCode: "grants" + funderReferenceCode: "funders" + researcherReferenceCode: "researchers" + licenceReferenceCode: "licenses" + projectReferenceCode: "projects" + datasetReferenceCode: "datasets" + publicationReferenceCode: "publications" + openaireGrantSourceCode: "openaire" + orcidResearcherSourceCode: "ORCID" + \ No newline at end of file