diff --git a/IRaCIS.Core.API/Properties/launchSettings.json b/IRaCIS.Core.API/Properties/launchSettings.json index 256911ee2..705519807 100644 --- a/IRaCIS.Core.API/Properties/launchSettings.json +++ b/IRaCIS.Core.API/Properties/launchSettings.json @@ -24,6 +24,14 @@ }, "applicationUrl": "http://localhost:6100" }, + "Prod_HIR": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Prod_HIR" + }, + "applicationUrl": "http://localhost:6100" + }, "Test_HIR": { "commandName": "Project", "launchBrowser": true, diff --git a/IRaCIS.Core.API/appsettings.Prod_HIR.json b/IRaCIS.Core.API/appsettings.Prod_HIR.json new file mode 100644 index 000000000..f6f4c073d --- /dev/null +++ b/IRaCIS.Core.API/appsettings.Prod_HIR.json @@ -0,0 +1,48 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "ObjectStoreService": { + "ObjectStoreUse": "MinIO", + "MinIO": { + "EndPoint": "192.168.3.112", + "Port": "9080", + "UseSSL": true, + "AccessKeyId": "Jnywl9aIw83yewZIJKod", + "SecretAccessKey": "N83bTzoJGkg4OLW8x54IZRwwSvdxcdYi9UZ2BYII", + "BucketName": "hir-images", + "ViewEndpoint": "https://192.168.3.112:9080/hir-images" + } + }, + "ConnectionStrings": { + "RemoteNew": "Server=192.168.3.114,1433;Database=Prod_HIR_Images;User ID=sa;Password=xc_123456;TrustServerCertificate=true", + "Hangfire": "Server=192.168.3.114,1433;Database=Prod_HIR_Hangfire;User ID=sa;Password=xc_123456;TrustServerCertificate=true" + }, + "BasicSystemConfig": { + "OpenUserComplexPassword": true, + "OpenSignDocumentBeforeWork": false, + "OpenTrialRelationDelete": false, + "OpenLoginLimit": true, + "LoginMaxFailCount": 5, + "LoginFailLockMinutes": 30, + "AutoLoginOutMinutes": 120, + "AESKey": "HIR_System_AES_Key_Info", + "CmoveIntervalMinutes": 1, + "CmoveInstanceIntervalMinutes": 1 + }, + "SystemEmailSendConfig": { + "Port": 465, + "Host": "smtp.qiye.aliyun.com", + "FromEmail": "test-study@extimaging.com", + "FromName": "Test_HIR", + "AuthorizationCode": "zhanying123", + "SiteUrl": "http://hir.test.extimaging.com/login" + } +} + + +