yavsc/Yavsc/appsettings.json

65 lines
1.7 KiB
JSON

{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"Data": {
"DefaultConnection": {
"ConnectionString": "Server=[YOURSERVERNAME];Port=5432;Database=[YOURDBNAME];Username=[YOURDBUSERNAME];Password=[YOURDBPASSW];"
}
},
"Site": {
"Title": "Yavsc",
8 years ago
"Slogan": "Yavsc!",
"Banner": "/images/banner.jpg",
8 years ago
"Authority": "http://127.0.0.1:5000/",
"Audience": "http://127.0.0.1:5000/",
"Owner": {
8 years ago
"Name": "[query]",
"Address": "bigchief@company.com"
},
"Admin": {
8 years ago
"Name": "[answer]",
"Address": "contact@company.com"
},
"UserFiles": {
8 years ago
"Avatars": "Avatars",
"Quota": 200000000,
8 years ago
"Bills":"Bills",
"Blog":"Blog"
},
"TempDir": "Temp"
},
"Smtp": {
"Host": "[YOURSMTPHOST]",
"Port": 25,
"EnableSSL": false
},
"DataProtection": {
"Keys": {
"Dir": "DataProtection-Keys"
},
"RSAParamFile": "RSA-Params.json",
"ExpiresInHours": 168
8 years ago
},
"Authentication": {
"Google": {
"ApiKey": "[Your ApiKey]",
"ClientId" : "[Your ClientId]",
8 years ago
"ClientSecret": "[Your ClientSecret]"
},
"Facebook": {
"ClientId":"[Your ClientId]",
"ClientSecret":"[Your ClientSecret]"
},
"Twitter": {
"ClientId":"[Your ClientId]",
"ClientSecret":"[Your ClientSecret]"
8 years ago
}
}
}