소스 검색

no message

KIM-JINO5 2 달 전
부모
커밋
0b827cca20
3개의 변경된 파일14개의 추가작업 그리고 1개의 파일을 삭제
  1. 11 0
      Admin/appsettings.Development.json
  2. 1 1
      Admin/appsettings.json
  3. 2 0
      Jenkinsfile

+ 11 - 0
Admin/appsettings.Development.json

@@ -15,6 +15,17 @@
         "IdentityDbContextConnection": "Server=(localdb)\\mssqllocaldb;Database=Admin;Trusted_Connection=True;MultipleActiveResultSets=true"
         "IdentityDbContextConnection": "Server=(localdb)\\mssqllocaldb;Database=Admin;Trusted_Connection=True;MultipleActiveResultSets=true"
     },
     },
 
 
+    "Kestrel": {
+        "Endpoints": {
+            "Http": {
+                "Url": "http://localhost:5000"
+            }
+        },
+        "Limits": {
+            "MaxRequestBodySize": 52428800
+        }
+    },
+
     "App": {
     "App": {
         "Name": "bitforum Admin",
         "Name": "bitforum Admin",
         "Company": "PLAYR",
         "Company": "PLAYR",

+ 1 - 1
Admin/appsettings.json

@@ -17,7 +17,7 @@
     "Kestrel": {
     "Kestrel": {
         "Endpoints": {
         "Endpoints": {
             "Http": {
             "Http": {
-                "Url": "https://localhost:5000"
+                "Url": "http://localhost:5000"
             }
             }
         },
         },
         "Limits": {
         "Limits": {

+ 2 - 0
Jenkinsfile

@@ -16,6 +16,8 @@ pipeline {
             steps {
             steps {
                 bat 'chcp 65001 && sc.exe stop bitforum-Api || exit 0'
                 bat 'chcp 65001 && sc.exe stop bitforum-Api || exit 0'
                 bat 'chcp 65001 && sc.exe stop bitforum-Admin || exit 0'
                 bat 'chcp 65001 && sc.exe stop bitforum-Admin || exit 0'
+				bat 'taskkill /F /IM Web.Api.exe 2>nul || exit 0'
+                bat 'taskkill /F /IM Admin.exe 2>nul || exit 0'
                 bat 'ping 127.0.0.1 -n 6 > nul'
                 bat 'ping 127.0.0.1 -n 6 > nul'
             }
             }
         }
         }