sharkfoo
sharkfoo

Reputation: 23

How to bind a server certificate to a HttpListener SSL port on Linux .NET Core 2.0

The .Net Core 2.0 Microsoft documentation for the HttpListner has a note stating that you can associate a server certificate with a port using the HttpCfg.exe program shipped with Windows Server 2003.

I'm looking for a way to bind a server certificate to a HttpListener port on Ubuntu Linux.

Upvotes: 2

Views: 1248

Answers (1)

Maxim Ocheretianko
Maxim Ocheretianko

Reputation: 58

You can't do that for now because this feature (HTTPS support for unix) implementation is planned for 2.1.0 milestone. See issue on github

Upvotes: 1

Related Questions