-
-
Notifications
You must be signed in to change notification settings - Fork 146
/
appsettings.json
28 lines (28 loc) · 1.02 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
{
"ConnectionStrings": {
//"EFUnitOfWork": "Server=(local);Database=MVCBlog;Trust Server Certificate=true;Trusted_Connection=True;MultipleActiveResultSets=true;application name=MVCBlog",
"EFUnitOfWork": "Server=(localdb)\\mssqllocaldb;Database=MVCBlog-5B146AA6-13E2-40EC-BA3C-3F7981A9F295;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": "*"
}