Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
karmaking committed Jul 24, 2024
1 parent 5aa0161 commit b46ad80
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions application.properties
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
server.port=${server.port}
oauth2.public_url=${oauth2.public_url}
obp.base_url=${obp.base_url}
endpoint.path.prefix=${endpoint.path.prefix}
server.port=${SERVER_PORT}
oauth2.public_url=${OAUTH_2_PUBLIC_URL}
obp.base_url=${OBP_BASE_URL}
endpoint.path.prefix=${ENDPOINT.PATH.PREFIX}

mtls.keyStore.path=/etc/ssl/certs/keystore.jks
mtls.keyStore.password=${mtls.keyStore.password}
mtls.keyStore.alias=${mtls.keyStore.alias}
mtls.trustStore.path=/etc/ssl/certs/truststore.jks
mtls.trustStore.password=${mtls.trustStore.password}
mtls.keyStore.path=/keystore/keystore.jks
mtls.keyStore.password=${KEY_STORE_PASSWD}
mtls.keyStore.alias=${KEYSTORE_ALIAS}
mtls.trustStore.path=/truststore/truststore.jks
mtls.trustStore.password=${TRUST_STORE_PASSWD}

display_standards=${display_standards}
force_jws=${force_jws}
display_standards=${DISPLAY_STANDARDS}
force_jws=${FORCE_JWS}
server.servlet.session.cookie.name=${COOKIE_NAME}

server.servlet.session.cookie.name=${server.servlet.session.cookie.name}

logo.bank.enabled=${logo.bank.enabled}
logo.bank.url=${logo.bank.url}
logo.bank.enabled=${LOGO_BANK_ENABLED}
logo.bank.url=${LOGO_BANK_URL}

### insert oauth2-related keys from API consumer registration below ###

oauth2.client_id=${oauth2.client_id}
oauth2.redirect_uri=${oauth2.redirect_uri}
oauth2.client_scope=${oauth2.client_scope}
oauth2.jws_alg=${oauth2.jws_alg}
oauth2.jwk_private_key=${oauth2.jwk_private_key}
oauth2.client_id=${OAUTH2_CLIENT_ID}
oauth2.redirect_uri=${OAUTH2_REDIRECT_URI}
oauth2.client_scope=${OAUTH2_CLIENT_SCOPE}
oauth2.jws_alg=${OAUTH2_JWS_ALG}
oauth2.jwk_private_key=${OAUTH2_JWK_PRIVATE_KEY}

0 comments on commit b46ad80

Please sign in to comment.