init: 클린 기반 auth 서버 설계
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:h2:mem:project-auth-server;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DEFAULT_NULL_ORDERING=HIGH;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
||||
username: sa
|
||||
password:
|
||||
driver-class-name: org.h2.Driver
|
||||
jpa:
|
||||
open-in-view: false
|
||||
hibernate:
|
||||
ddl-auto: none
|
||||
properties:
|
||||
hibernate:
|
||||
default_schema: auth
|
||||
security:
|
||||
oauth2:
|
||||
resourceserver:
|
||||
jwt:
|
||||
issuer-uri: http://localhost:8180/realms/test
|
||||
|
||||
app:
|
||||
docs:
|
||||
title: Project Auth Server API Test
|
||||
description: 테스트용 OpenAPI 문서 설정입니다.
|
||||
version: test
|
||||
persistence:
|
||||
migration:
|
||||
location: classpath:db/migration
|
||||
schema: auth
|
||||
Reference in New Issue
Block a user