-
Notifications
You must be signed in to change notification settings - Fork 26
/
appsettings.json
45 lines (45 loc) · 1.04 KB
/
appsettings.json
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
{
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore.Hosting": "Information",
"Microsoft.EntityFrameworkCore": "Warning",
"Hangfire": "Information",
"Rebus": "Information",
"Elsa": "Debug"
}
},
"AllowedHosts": "*",
"App": {
"Name": "Workflow",
"SelfUrl": "https://localhost:44345",
"CorsOrigins": "https://localhost:44345"
},
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=AbpElsaDemo;Trusted_Connection=True"
},
"RemoteServices": {
"Default": {
"BaseUrl": "https://localhost:44391/"
}
},
"Redis": {
"IsEnabled": false,
"Configuration": "127.0.0.1",
"DefaultDatabase": 0
},
"AuthServer": {
"Authority": "https://localhost:44324",
"RequireHttpsMetadata": "true"
},
"StringEncryption": {
"DefaultPassPhrase": "rFcvmiGDmntpGVs8"
},
"Elsa": {
"Server": {
"BaseUrl": "https://localhost:44324"
}
}
}