From 252114757939635c8058125cd4f15b3c40af2600 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 13 May 2025 10:19:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=8C=BB=E9=99=A2=E9=80=9A?= =?UTF-8?q?=E7=94=A8=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Properties/launchSettings.json | 8 ++++ IRaCIS.Core.API/appsettings.Prod_HIR.json | 48 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 IRaCIS.Core.API/appsettings.Prod_HIR.json 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" + } +} + + +