Terminal Edition Configuration - Texnomic/SecureDNS GitHub Wiki

Introduction

The following Sections applies to AppSettings.json file bundled with SecureDNS Terminal Edition releases started from v0.2 Alpha.


Table Of Sections

  1. Seq
  2. Proxy Server
  3. DNSCrypt Protocol
  4. DNS-Over-HTTPs Protocol
  5. DNS-Over-TLS Protocol
  6. DNS-Over-UDP Protocol
  7. Ethereum Name Service Protocol
  8. FilterLists Middleware
  9. HostTable Middleware
  10. Terminal Options
  11. Proxy Responsibility Chain

Seq

Support for Seq comes from Serilog's Seq Sink. Accordingly, under Serilog's WriteTo object you can find Seq's Args of serverUrl:

Note
Check Seq Installation Wiki Page For Detailed Instructions.
Object Default Value Description
serverUrl http://127.0.0.1:5341 Seq Server HTTP EndPoint
"Serilog": {
    "WriteTo": [
      {
        "Name": "Seq",
        "Args": {
          "serverUrl": "http://127.0.0.1:5341",
          "compact": true
        }
      }
    ]

Support for Serilog