-
Notifications
You must be signed in to change notification settings - Fork 5
/
application.properties
32 lines (27 loc) · 1.37 KB
/
application.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The format used for the keystore. It could be set to JKS in case it is a JKS file
server.ssl.key-store-type=PKCS12
# The path to the keystore containing the certificate. Valid until 2033
server.ssl.key-store=classpath:keystore/ucDemoKeystore.p12
# The password used to generate the certificate
server.ssl.key-store-password=myCoolPassword
# The alias mapped to the certificate
server.ssl.key-alias=ucDemoKeystore
server.ssl.enabled=true
# It is recommended to create an application-local.properties rather than editing here, so you can modify this app and
# not accidentally share your credentials. Spring will automatically pick up application-local.properties if it exists.
#app.merchantID=YOUR MERCHANT ID
#app.merchantKeyId=YOUR KEY ID (SHARED SECRET SERIAL NUMBER)
#app.merchantSecretKey=YOUR SECRET KEY
# These properties are only required if you're using the Click to Pay Drop-in UI use case (e.g. retrieving payment credentials
# for use on another gateway
#app.porfolioId=YOUR PORTFOLIO ID
#app.portfolioKeyId=YOUR PORTFOLIO KEY ID
#app.portfolioSecretKey=YOUR PORTFOLIO SECRET KEY
app.requestHost=apitest.cybersource.com
app.userAgent=Mozilla/5.0
app.runEnvironment=apitest.cybersource.com
app.authenticationType=http_signature
# Pick up application-local.properties if it exists
spring.profiles.active=local
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html