init: 클린 기반 auth 서버 설계
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
spring:
|
||||
config:
|
||||
activate:
|
||||
on-profile: local
|
||||
datasource:
|
||||
url: ${APP_DATASOURCE_URL:jdbc:postgresql://localhost:5432/project_auth}
|
||||
username: ${APP_DATASOURCE_USERNAME:project_auth}
|
||||
password: ${APP_DATASOURCE_PASSWORD:project_auth}
|
||||
driver-class-name: ${APP_DATASOURCE_DRIVER_CLASS_NAME:org.postgresql.Driver}
|
||||
jpa:
|
||||
hibernate:
|
||||
ddl-auto: validate
|
||||
security:
|
||||
oauth2:
|
||||
resourceserver:
|
||||
jwt:
|
||||
issuer-uri: ${APP_SECURITY_KEYCLOAK_ISSUER_URI:http://localhost:8081/realms/project-auth}
|
||||
Reference in New Issue
Block a user