1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "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",
- "Scheduler": "off",
- "WeatherApiKey": "%2Fb1uV%2FBf0ckaHJhP5IMVIBkxVSAB%2F9aixZVSgj0%2BJkpvFZMXUDDD4B16uEFdeM1wnm4iFGc97ghjWZ9oBwsTSQ%3D%3D",
- "DustApiKey": "%2Fb1uV%2FBf0ckaHJhP5IMVIBkxVSAB%2F9aixZVSgj0%2BJkpvFZMXUDDD4B16uEFdeM1wnm4iFGc97ghjWZ9oBwsTSQ%3D%3D"
- },
- "AllowedHosts": "*",
- "ConnectionStrings": {
- "Server": "SqlServer",
- "SqliteContext": "Data Source=FMSAdmin.db",
- "SqlServerContext": "data source=15.165.55.238;initial catalog=iBems_HD;persist security info=True;user id=sa;password=icontrols123.,"
- },
- "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"
- }
- }
- ]
- },
- "Kestrel": {
- "EndPoints": {
- "Http": {
- "Url": "http://0.0.0.0:9090"
- }
- }
- }
- }
|