12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "AppSettings": {
- "Secret": "THIS IS USED TO SIGN AND VERIFY JWT TOKENS, REPLACE IT WITH YOUR OWN SECRET, IT CAN BE ANY STRING",
- "StoragePath": "/react/fms-admin-backend",
- "StorageUrl": "http://localhost:9090",
- "SiteUrl": "http://localhost:9090",
- "WeatherApiKey": "L2tohxvq9Ro8DU%2BaVOGpY9%2B0EbVxL4HRHCwEAeiUYTRUNegytTdOFPN2W%2FxpTo0%2BeEQE%2FGY85zp5LTEe6n6g0A%3D%3D",
- "DustApiKey": "L2tohxvq9Ro8DU%2BaVOGpY9%2B0EbVxL4HRHCwEAeiUYTRUNegytTdOFPN2W%2FxpTo0%2BeEQE%2FGY85zp5LTEe6n6g0A%3D%3D"
- },
- "Serilog": {
- "MinimumLevel": {
- "Default": "Information",
- "Override": {
- "Microsoft": "Warning",
- "Microsoft.AspNetCore.Hosting.Diagnostics": "Information"
- /*"Microsoft.EntityFrameworkCore.Database.Command": "Information"*/
- }
- },
- "WriteTo": [
- {
- "Name": "Console",
- "Args": {
- "outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u4}] {SourceContext}{MemberName} {Message}{NewLine}{Exception}"
- }
- },
- {
- "Name": "File",
- "Args": {
- "path": "Logs/fms.log",
- "outputTemplate": "[{Timestamp:HH:mm:ss.fff} {Level:u4}] {SourceContext}{MemberName} {Message}{NewLine}{Exception}",
- "rollingInterval": "Day"
- }
- }
- ]
- },
- "AllowedHosts": "*",
- "ConnectionStrings": {
- "SeedApiContext": "data source=15.165.55.238;initial catalog=iBems_HD;persist security info=True;user id=sa;password=icontrols123.,"
- }
- }
|