30 lines
629 B
YAML
30 lines
629 B
YAML
application:
|
|
security:
|
|
jwt:
|
|
secretKey: "secret-key"
|
|
expirationDelayInMinutes: 30
|
|
refreshToken:
|
|
expirationDelayInDays: 7
|
|
pictures:
|
|
path: /opt/codiki/pictures/
|
|
temp-path: /opt/codiki/pictures/temp/
|
|
|
|
server:
|
|
http2:
|
|
enabled: true
|
|
error:
|
|
whitelabel:
|
|
enabled: false # Disable html error responses.
|
|
include-stacktrace: never
|
|
|
|
spring:
|
|
datasource:
|
|
driverClassName: org.postgresql.Driver
|
|
url: jdbc:postgresql://localhost:50001/codiki_db
|
|
username: codiki_user
|
|
password: password
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 150MB
|
|
max-request-size: 151MB
|