-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Production.json
More file actions
43 lines (43 loc) · 1.11 KB
/
appsettings.Production.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Error"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Console"
},
{
"Name": "File",
"Args": {
"path": "logs/production-.log",
"rollingInterval": "Day",
"retainedFileCountLimit": 30,
"fileSizeLimitBytes": 10485760,
"rollOnFileSizeLimit": true
}
}
]
},
"ConnectionStrings": {
"DefaultConnection": "Server=localhost;Database=SOLIDTemplate_Prod;Trusted_Connection=false;MultipleActiveResultSets=true;User Id=your_user;Password=your_password;"
},
"UseInMemoryDatabase": false,
"AllowedHosts": "yourdomain.com,*.yourdomain.com",
"CORS": {
"AllowedOrigins": ["https://yourdomain.com", "https://app.yourdomain.com"],
"AllowAnyOrigin": false
}
}