Remotely/Remotely_Server/appsettings.json
2021-07-29 07:53:42 -07:00

27 lines
765 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,
"SmtpHost": "",
"SmtpPort": 25,
"SmtpUserName": "",
"SmtpPassword": "",
"SmtpEmail": "",
"SmtpDisplayName": ""
}
}