Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
EduSpider
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
viitto
EduSpider
Commits
4ba71d5a
Commit
4ba71d5a
authored
Jun 10, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1f63d8bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
14 deletions
+13
-14
Startup.cs
EduSpider.WebApi/Startup.cs
+12
-1
appsettings.json
EduSpider.WebApi/appsettings.json
+1
-13
No files found.
EduSpider.WebApi/Startup.cs
View file @
4ba71d5a
...
@@ -9,6 +9,7 @@ using Microsoft.Extensions.DependencyInjection;
...
@@ -9,6 +9,7 @@ using Microsoft.Extensions.DependencyInjection;
using
Microsoft.Extensions.DependencyInjection.Extensions
;
using
Microsoft.Extensions.DependencyInjection.Extensions
;
using
Microsoft.Extensions.Hosting
;
using
Microsoft.Extensions.Hosting
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Linq
;
using
VTX.FW.Config
;
using
VTX.FW.Config
;
using
VTX.FW.Filter
;
using
VTX.FW.Filter
;
using
VTX.FW.Helper
;
using
VTX.FW.Helper
;
...
@@ -63,11 +64,21 @@ namespace EduSpider.WebApi
...
@@ -63,11 +64,21 @@ namespace EduSpider.WebApi
{
{
"http://localhost:7100"
,
"http://localhost:7100"
,
"http://localhost:7200"
,
"http://localhost:7200"
,
"http://localhost:8181"
,
"https://edu.kookaku.com"
,
};
};
var
ArrayStr
=
ConfigHelper
.
GetAppsettings
(
"corsArray"
);
var
ArrayStr
=
ConfigHelper
.
GetAppsettings
(
"corsArray"
);
if
(!
string
.
IsNullOrWhiteSpace
(
ArrayStr
))
if
(!
string
.
IsNullOrWhiteSpace
(
ArrayStr
))
{
{
corsArray
.
AddRange
(
JsonHelper
.
Deserialize
<
List
<
string
>>(
ArrayStr
));
var
accesslist
=
ArrayStr
.
Split
(
','
);
foreach
(
var
item
in
accesslist
)
{
if
(!
string
.
IsNullOrEmpty
(
item
))
{
corsArray
.
Add
(
item
);
}
}
corsArray
=
corsArray
.
Distinct
().
ToList
();
}
}
return
corsArray
;
return
corsArray
;
}
}
...
...
EduSpider.WebApi/appsettings.json
View file @
4ba71d5a
...
@@ -8,19 +8,7 @@
...
@@ -8,19 +8,7 @@
},
},
"AllowedHosts"
:
"*"
,
"AllowedHosts"
:
"*"
,
//
//
"corsArray"
:
[
"corsArray"
:
"https://edu.kookaku.com"
,
"http://localhost"
,
"http://localhost:7100"
,
"http://192.168.10.214:7100"
,
"http://localhost:7200"
,
"http://192.168.10.214:7200"
,
"http://localhost:8081"
,
"http://localhost:8080"
,
"http://localhost:8181"
,
"http://localhost:8182"
,
"http://localhost:8082"
,
"http://localhost:7302"
],
//ַ
//ַ
"ConnectionStrings"
:
{
"ConnectionStrings"
:
{
"DefaultConnection"
:
"server=192.168.10.214;user id=reborn;password=Reborn@2018;database=reborn_think;CharSet=utf8mb4; Convert Zero Datetime=true; "
,
"DefaultConnection"
:
"server=192.168.10.214;user id=reborn;password=Reborn@2018;database=reborn_think;CharSet=utf8mb4; Convert Zero Datetime=true; "
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment