Skip to content

Commit

Permalink
FDP-94: Move non production properties to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperkamerling committed Nov 17, 2023
1 parent e1036d2 commit ca8a205
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 48 deletions.
57 changes: 49 additions & 8 deletions application/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,51 @@
logging:
level:
org:
gxf:
soapbridge: DEBUG
level:
org:
gxf:
soapbridge: DEBUG

spring:
kafka:
bootstrap-servers: localhost:9092
consumer:
group-id: gxf-proxy
kafka:
bootstrap-servers: localhost:9092
consumer:
group-id: gxf-proxy

proxy-server:
network-zone: IT

security:
key-store:
location: /etc/ssl/certs
password: 1234
type: pkcs12
trust-store:
location: /etc/ssl/certs/trust.jks
password: 123456
type: jks
signing:
key-type: RSA
sign-key-file: /etc/ssl/certs/proxy-server/sign-key.der
verify-key-file: /etc/ssl/certs/proxy-server/verify-key.der
provider: SunRsaSign
signature: SHA256withRSA

topics:
calls:
requests: proxy-server-calls-requests
responses: proxy-server-calls-responses
notifications:
requests: proxy-server-notification-requests
responses: proxy-server-notification-responses

soap:
notification:
host: localhost
port: 443
protocol: https
platform:
host: localhost
port: 443
protocol: https
hostname-verification-strategy: BROWSER_COMPATIBLE_HOSTNAMES
time-out: 45
custom-timeouts: SetScheduleRequest,180,GetStatusRequest,120
40 changes: 0 additions & 40 deletions application/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,3 @@ management:
web:
exposure:
include: prometheus

proxy-server:
network-zone: IT

security:
key-store:
location: /etc/ssl/certs
password: 1234
type: pkcs12
trust-store:
location: /etc/ssl/certs/trust.jks
password: 123456
type: jks
signing:
key-type: RSA
sign-key-file: /etc/ssl/certs/proxy-server/sign-key.der
verify-key-file: /etc/ssl/certs/proxy-server/verify-key.der
provider: SunRsaSign
signature: SHA256withRSA

topics:
calls:
requests: proxy-server-calls-requests
responses: proxy-server-calls-responses
notifications:
requests: proxy-server-notification-requests
responses: proxy-server-notification-responses

soap:
notification:
host: localhost
port: 443
protocol: https
platform:
host: localhost
port: 443
protocol: https
hostname-verification-strategy: BROWSER_COMPATIBLE_HOSTNAMES
time-out: 45
custom-timeouts: SetScheduleRequest,180,GetStatusRequest,120

0 comments on commit ca8a205

Please sign in to comment.