Remotely/Remotely_Server/appsettings.json
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -07:00

37 lines
957 B
JSON

{
"ConnectionStrings": {
"SQLite": "DataSource=Server.db",
"SQLServer": "Server=(localdb)\\mssqllocaldb;Database=aspnet-Server-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true",
"PostgreSQL": "Host=localhost;Database=;Username=;Password="
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"ApplicationOptions": {
"DefaultPrompt": "~>",
"DBProvider": "SQLite",
"AllowSelfRegistration": true,
"UseDomainAuthentication": false,
"ShowMessageOfTheDay": true,
"DataRetentionInDays": 90,
"RemoteControlSessionLimit": 1,
"IceConfiguration": {
"iceServers": [
{ "urls": "stun:" },
{
"urls": "turn:",
"credential": "",
"username": ""
}
]
},
"SmtpHost": "",
"SmtpPort": 25,
"SmtpUserName": "",
"SmtpPassword": "",
"SmtpEmail": "",
"SmtpDisplayName": ""
}
}