datalust / seq-forwarder

Local collection and reliable forwarding of log data to Seq
Apache License 2.0
57 stars 15 forks source link

Load certificates from `LocalMachine\My` when serving HTTPS on Windows #73

Closed nblumhardt closed 5 months ago

nblumhardt commented 5 months ago

With this change, seq-forwarder will look for SSL certificates in the local machine certificate store on Windows:

image

Certificates will be matched according to the hostname that seq-forwarder is listening on, so for example, if listenUri is https://example.com then a certificate with CN=example.com will be matched.

Certificates must be trusted, and must have a private key, or they will be ignored.

Note that the bind-ssl command is obsolete and no longer required, so I've removed it in this PR.