init: 클린 기반 auth 서버 설계
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
spring:
|
||||
config:
|
||||
activate:
|
||||
on-profile: dev
|
||||
datasource:
|
||||
url: ${APP_DATASOURCE_URL}
|
||||
username: ${APP_DATASOURCE_USERNAME}
|
||||
password: ${APP_DATASOURCE_PASSWORD}
|
||||
driver-class-name: org.postgresql.Driver
|
||||
jpa:
|
||||
hibernate:
|
||||
ddl-auto: validate
|
||||
security:
|
||||
oauth2:
|
||||
resourceserver:
|
||||
jwt:
|
||||
issuer-uri: ${APP_SECURITY_KEYCLOAK_ISSUER_URI}
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: health,info,loggers,httpexchanges
|
||||
endpoint:
|
||||
health:
|
||||
show-details: when-authorized
|
||||
server:
|
||||
address: 127.0.0.1
|
||||
port: ${MANAGEMENT_SERVER_PORT:9090}
|
||||
Reference in New Issue
Block a user