| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- spring:
- datasource:
- platform : postgres
- url: jdbc:postgresql://localhost:5432/crss_reg
- username: crss_reg
- password: crss_reg
- driverClassName: org.postgresql.Driver
- jpa:
- database: POSTGRESQL
- show-sql: true
- hibernate:
- ddl-auto: update
- mail:
- host: smtp.gmail.com
- port: 587
- username: demo.exist.pemc@gmail.com
- # please provide the password
- 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
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- storage:
- file:
- rootFolder: registration-dir
- security:
- oauth2:
- client:
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- server:
- server:
- port: 8090
- undertow:
- accesslog:
- dir: target/logs
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
|