-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
35 lines (35 loc) · 1.07 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
{
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=_WHATEVERXXX;Integrated Security=True;",
"AzureSqlConnection": "Server=tcp:petshopdb.windows.net,1433;Initial Catalog=_WHATEVERXXX;Persist Security Info=False;User ID=sa;Password='Abcde12345!!';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;",
"AzureVmConnection": "Server=tcp:petshopdb.westeurope.cloudapp.azure.com,1433;Initial Catalog=_WHATEVERXXX;Persist Security Info=False;User ID=sa;Password='Abcde12345!!';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Warning"
},
"WriteTo": [
{
"Name": "Console"
},
{
"Name": "File",
"Args": {
"path": "./log.txt"
}
}
]
},
"Azure": {
"SignalR": {
"Enabled": "true"
}
}
}