-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathappsettings.json
More file actions
45 lines (45 loc) · 1.35 KB
/
appsettings.json
File metadata and controls
45 lines (45 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"ConnectionStrings": {
"DefaultConnectionForWindows": "Server=(localdb)\\mssqllocaldb;Database=AuthServiceDB;Trusted_Connection=True;TrustServerCertificate=true;",
"DefaultConnectionForLinux": "Server=localhost,1433;Database=AuthServiceDB;User ID=SA;Password=password_1234;TrustServerCertificate=True;"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"AppSettings": {
"SecurityKey": "U8_.wpvk93fPWG<f2$Op[vwegmQGF25_fNG2V0ijnm2e0igv24g",
"ExpiresIn": "43200",
"ApiName": "AuthService"
},
"ExpertOptions": {
"ExpiresFormat": "dd-MM",
"ExpiresFirstTerm": "01-03",
"ExpiresSecondTerm": "01-08",
"LoginProvider": "ExpertAuth",
"TokenName": "ExpertAuthToken"
},
"Github": {
"ClientIdGithub": "bdc2121c8ab638c5f612",
"ClientSecretGithub": "",
"ScopeGitHub": "read:user",
"OrganizationNameGithub": "Hwproj"
},
"EventBus": {
"EventBusHostName": "localhost",
"EventBusUserName": "guest",
"EventBusPassword": "guest",
"EventBusVirtualHost": "/",
"EventBusQueueName": "AuthService",
"EventBusRetryCount": "5"
},
"Services": {
"Auth": "http://localhost:5001",
"Courses": "http://localhost:5002",
"Notifications": "http://localhost:5006",
"Solutions": "http://localhost:5007",
"Content": "http://localhost:5008"
}
}