-
Notifications
You must be signed in to change notification settings - Fork 548
/
appsettings.json
52 lines (52 loc) · 1.65 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
46
47
48
49
50
51
52
{
"ConnectionStrings": {
"DefaultConnection": "Server=.\\SQLEXPRESS;Database=WHMS-LTE-v820240330;Trusted_Connection=True;TrustServerCertificate=True;MultipleActiveResultSets=true"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"RegistrationConfiguration": {
"SendEmailConfirmation": true
},
"SmtpConfiguration": {
"Host": "smtp.gmail.com",
"Port": 465,
"UserName": "xxx",
"Password": "xxx", //if use smtp.gmail.com, use the GMAIL app password, not your email password. https://support.google.com/mail/answer/185833?hl=en
"FromAddress": "xxx",
"FromName": "xxx"
},
"IdentitySettings": {
"RequireConfirmedAccount": true,
"RequireDigit": false,
"RequiredLength": 3,
"RequireNonAlphanumeric": false,
"RequireUppercase": false,
"RequireLowercase": false,
"DefaultLockoutTimeSpan": "00:05:00",
"MaxFailedAccessAttempts": 5
},
"ApplicationConfiguration": {
"AppName": "INDOTALENT WHMS",
"IsDemoVersion": true,
"IsDevelopment": true,
"Homepage": "/Index",
"LoginPage": "/Identity/Account/Login",
"LogoutPage": "/Account/Logout",
"AccessDeniedPage": "/Identity/Account/AccessDenied",
"AccountProfilePage": "/Account/Manage/Index",
"InternalUserRegistrationPage": "/Account/Register",
"DefaultAdminEmail": "admin@gmail.com",
"DefaultAdminFullName": "Administrator",
"DefaultPassword": "123456",
"TwoFactorEnabled": false,
"ExternalLoginEnabled": false,
"RoleInternalName": "Internal",
"RoleCustomerName": "Customer",
"RoleVendorName": "Vendor"
},
"AllowedHosts": "*"
}