1234567891011121314151617181920212223242526272829303132 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*",
- "DataStoreFilePath": "/var/jsonjumble/data",
- "AccountFilePath": "/var/jsonjumble/accounts",
- "RelativeStaticFilePath": "Static",
- "RelativeErrorFilePath": "ErrorPages",
- "UseHttps": false,
- "JwtSettings": {
- "SecretKey": "supersecretkeythatislongenoughtoprovidegoodsecurity",
- "ExpirationInHours": "720",
- "Issuer": "http://localhost:5000/",
- "Audience": "jsonjumble"
- },
- "AdminUsers": [
- { "Username": "admin", "Password": "5E884898DA28047151D0E56F8DC6292773603D0D6AABBDD62A11EF721D1542D8" }
- ],
- "RegisteredDomains": [
- "https://eyeofmidas.net",
- "http://eyeofmidas.net",
- "http://tddnetwork.org",
- "https://tddnetwork.org",
- "http://localhost",
- "https://localhost"
- ]
- }
|