-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
appsettings.json
27 lines (27 loc) · 858 Bytes
/
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
{
"ConnectionStrings": {
"EFUnitOfWork": "Server=(local);Database=MVCBlog2;Trust Server Certificate=true;Trusted_Connection=True;MultipleActiveResultSets=true;application name=MVCBlog"
},
"BlogSettings": {
"blogName": "todo.com",
"blogDescription": "todo.com Blog Feed",
"notifyOnNewComments": true,
"notifyOnNewCommentsEmail": "[email protected]",
"notifyOnNewCommentsSubject": "New comment",
"newUsersCanRegister": true
},
"MailSettings": {
"sendMails": true,
"emailHeaderTitle": "My Blog",
"emailHeaderUrl": "https://www.todo.com",
"defaultSignature": "Best regards",
"defaultSenderName": "TODO",
"emailAddress": "[email protected]",
"mailHost": "mail.todo.com",
"mailPort": 465,
"mailUserName": "[email protected]",
"mailPassword": "TODO",
"useSsl": true
},
"AllowedHosts": "*"
}