Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Beispiel für ADVOKAT Server per Microsoft IIS mit Werkseinstellungen

Codeblock
languagejson
{
   "DataDispatcher": {
      "SignalREnabled": true,
      "DatabaseEnabled": true,
      "ForwardDatabase": true,
      "PollingIntervalInSeconds": 5
   },
   "AdvokatData": {
      "IniPath": "f:\\\\advokat$\\ADVOKAT\\Daten\\Advokat.ini",
      "FeaturesPath": "f:\\\\advokat$\\ADVOKAT\\Admin\\Cab\\Features.xml"
   },
   "Certificate": {
      "ThumbPrint": "66a9119a535cf7420d650bc38358b4c7b3659655",
      "Store": "My",
      "Location": "LocalMachine"
   },    
  "PlugIns": [
    {
      "Assembly": "*"
    }
   ],   
  "Kestrel": {
    "Endpoints": {
      "Https": {
        "Url": "http://*:44318"
      }
    }
  },
  "TimerApp": {
    "Title": "TimerApp",
    "ClockingEnabled": false,
    "ClockingInMinutes": 0,
    "ServerConnection": {
      "AllowInvalidCertificates": true,
      "TimeoutInSeconds": 60
    }
  },
  "Serilog": {
    "Using":
[ "Serilog.Sinks.File" ],
    "MinimumLevel": {
      "Default": "Warning"     },
    "WriteTo": [
      {
 
      "Name": "File",
        "Args": {
          "path": "%ALLUSERSPROFILE%\\Advokat\\Log\\Advokat.Server.log",
          "buffered": false,
          "fileSizeLimitBytes": "1048576",
          "rollOnfileSizeLimit": "true",
          "retainedFileCountLimit": "10",
          "outputTemplate": "{Timestamp:o} [{Level:u3}] ({Application}, {ThreadId,3}, {SourceContext}) {Message:lj}{NewLine}{Exception}"
        }
      }
    ],
    "Enrich": [ "FromLogContext", "WithThreadId" ],
    "Properties": {
      "Application": "ADVOKAT.Server"
    }
  }
}