feat(#23): Add maildev application.yaml configs
This commit is contained in:
@@ -48,3 +48,8 @@ logging:
|
|||||||
web: DEBUG
|
web: DEBUG
|
||||||
org.testcontainers: INFO
|
org.testcontainers: INFO
|
||||||
com.github.dockerjava: WARN
|
com.github.dockerjava: WARN
|
||||||
|
|
||||||
|
management:
|
||||||
|
health:
|
||||||
|
mail:
|
||||||
|
enabled: false
|
||||||
|
|||||||
@@ -8,3 +8,21 @@ spring:
|
|||||||
jwt:
|
jwt:
|
||||||
issuer-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUER_URI:http://localhost:7080}
|
issuer-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUER_URI:http://localhost:7080}
|
||||||
jwk-set-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI:http://localhost:7080}
|
jwk-set-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI:http://localhost:7080}
|
||||||
|
|
||||||
|
mail:
|
||||||
|
host: ${MAIL_HOST:0.0.0.0}
|
||||||
|
port: ${MAIL_PORT:1025}
|
||||||
|
username: ${MAIL_USERNAME:}
|
||||||
|
password: ${MAIL_PASSWORD:}
|
||||||
|
properties:
|
||||||
|
mail:
|
||||||
|
smtp:
|
||||||
|
auth: false
|
||||||
|
starttls:
|
||||||
|
enable: false
|
||||||
|
required: false
|
||||||
|
ssl:
|
||||||
|
enable: false
|
||||||
|
connectiontimeout: 5000
|
||||||
|
timeout: 5000
|
||||||
|
writetimeout: 5000
|
||||||
|
|||||||
Reference in New Issue
Block a user