mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-13 02:43:45 +00:00
26 lines
647 B
JSON
26 lines
647 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "User ID=postgres;Password=password-goes-here;Host=localhost;Port=5433;Database=database-name-goes-here;Pooling=true;"
|
|
},
|
|
"ElasticConfiguration": {
|
|
"Uri": "http://your-url-goes-here:9200"
|
|
},
|
|
"EmailConfiguration": {
|
|
"From": "your-email@gmail.com",
|
|
"SmtpServer": "smtp.gmail.com",
|
|
"Port": 465,
|
|
"Username": "your-email@gmail.com",
|
|
"Password": "your-password-goes-here"
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
}
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|