yavsc/Yavsc/appsettings.json

68 lines
1.9 KiB
JSON
Raw Normal View History

2016-05-17 18:22:18 +02:00
{
"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",
2017-02-21 12:02:12 +01:00
"Slogan": "Yavsc!",
"Banner": "/images/banner.jpg",
2016-05-26 14:52:11 +02:00
"Authority": "http://127.0.0.1:5000/",
2016-05-17 18:22:18 +02:00
"Owner": {
2017-06-08 17:09:06 +02:00
"Name": "[Site owner's name]",
"EMail": "[Site owner's e-mail address]"
2016-05-17 18:22:18 +02:00
},
"Admin": {
2017-06-08 17:09:06 +02:00
"Name": "[a name for a site admin]",
"EMail": "[an e-mail for a site admin]"
2016-05-17 18:22:18 +02:00
},
"UserFiles": {
2016-12-01 17:34:29 +01:00
"Avatars": "Avatars",
"Quota": 200000000,
2017-05-16 02:14:13 +02:00
"Bills": "Bills",
"Blog": "Blog"
2016-11-10 12:11:39 +01:00
},
"TempDir": "Temp"
2016-05-17 18:22:18 +02:00
},
"Smtp": {
"Host": "[YOURSMTPHOST]",
"Port": 25,
"EnableSSL": false
},
"DataProtection": {
"Keys": {
"Dir": "DataProtection-Keys"
},
"RSAParamFile": "RSA-Params.json",
"ExpiresInHours": 168
2016-06-12 01:32:51 +02:00
},
"Authentication": {
2017-05-16 02:14:13 +02:00
"PayPal": {
"Mode": "[sandbox|production]",
"ClientId": "[Your PayPal REST API ClientId]",
"Secret": "[Your PayPal REST API Secret]"
},
2016-06-12 01:32:51 +02:00
"Google": {
2017-05-16 02:14:13 +02:00
"ApiKey": "[Your ApiKey]",
"ClientId": "[Your ClientId]",
"ClientSecret": "[Your ClientSecret]"
},
"Facebook": {
"ClientId": "[Your ClientId]",
2017-01-25 10:42:03 +01:00
"ClientSecret": "[Your ClientSecret]"
},
"Twitter": {
2017-05-16 02:14:13 +02:00
"ClientId": "[Your ClientId]",
"ClientSecret": "[Your ClientSecret]"
2016-06-12 01:32:51 +02:00
}
2016-05-17 18:22:18 +02:00
}
2017-05-16 02:14:13 +02:00
}