[성현모] AuthApi 분리

This commit is contained in:
SHM
2025-07-15 10:16:26 +09:00
parent 20f1e7e7e5
commit 7a12be392a
52 changed files with 1931 additions and 60 deletions

View File

@ -0,0 +1,35 @@
{
"Server": {
"Address": "https://*",
"Port": 11000,
"IIS": false
},
"Auth": {
"issuer": "SystemX.WebApi.Auth",
"audience": "AuthApi",
"accessTokenSecret": "t6zdogyrT0U1bYw3gJvMm3JHmj2Iyawr7O2WKE2truX+MK0l/XNGmpU2ofagdUWBN4DxAUv7c8xSYVv/8abL6A==",
"accessTokenExpires": 1440, //minutes
"refreshTokenSecret": "1vVuoGqIqkStFI3QUXHMr0/yO1feLPnhqcfFGjZyk478+4WY7dhrUjCfVeWjmmSZYgb+rtP0X6ec+3iL35Yezw==",
"refreshTokenExpires": 1440 //minuts, 60*24 (1day)
},
"DataBase": [
{
"IP": "127.0.0.1",
"Port": 1433,
"DBName": "AccountDB",
"DBID": 1,
"DBContext": "AccountDB",
"UserID": "SystemX",
"Password": "X"
},
{
"IP": "127.0.0.1",
"Port": 1433,
"DBName": "AccountDB_DEV",
"DBID": 2,
"DBContext": "AccountDB",
"UserID": "SystemX",
"Password": "X"
}
]
}