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": "N50NNBTbuys7Gx9rkx3avyMCjEbP0IG8VaP5Ud4%2BtjKPapN22CX9xFFnYf5F9y%2BV0cBNMZRF8OY9V%2Fgs6K8pyA%3D%3D",
- "DustApiKey": "N50NNBTbuys7Gx9rkx3avyMCjEbP0IG8VaP5Ud4%2BtjKPapN22CX9xFFnYf5F9y%2BV0cBNMZRF8OY9V%2Fgs6K8pyA%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.,"
- }
- }
|