LoginDing / appsettings.json
Code · 24 lines · 396 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24{
	"MaintenanceUsers": [
		{
			"UserName": "test",
			"Password": "test",
			"Role": "User",
			"ExpireDays": 365
		},
		{
			"UserName": "admin",
			"Password": "admin",
			"Role": "Administrator",
			"ExpireDays": 365
		}
	],
	"Logging": {
		"LogLevel": {
			"Default": "Information",
			"MailSharp.Smtp": "Debug",
			"Microsoft.AspNetCore": "None",
			"Microsoft.Hosting": "None"
		}
	}
}