| 123456789101112131415161718192021222324252627282930313233343536 |
- spring:
- datasource:
- platform: oracle
- url: jdbc:oracle:thin:@192.168.235.6:1521:ORCL
- username: crss_reg
- password: crss_reg
- driverClassName: oracle.jdbc.OracleDriver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- mail:
- host: smtp.gmail.com
- port: 587
- # TODO: replace this values
- username: demo.exist.pemc@gmail.com
- password: $pockTest
- properties:
- mail.smtp.auth: true
- mail.debug: true
- mail.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- rabbitmq:
- host: pemc-oracle.ss.exist.com
- ports:
- - "5672:5672"
- - "15672:15672"
- graylog:
- host: pemc.integration.exist.com
|