Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded C# web server with easy SSL support

Tags:

c#

http

mono

I am looking for an embedded Web Server with out of the box SSL support, preferably configured from a command line or some easy config, without the need to change system wide config (like Registry). It should also work on mono.

like image 972
Darek Avatar asked Feb 01 '13 10:02

Darek


1 Answers

Have you tried my old server http://webserver.codeplex.com? It supports SSL and at least used to run on MONO.

I'm also (slowly) building a new one, it got no SSL support yet (but's not that hard to implement by yourself): http://github.com/jgauffin/griffin.webserver

Edit

The HttpListener in Griffin.Framework have SSL support now

like image 180
jgauffin Avatar answered Sep 25 '22 15:09

jgauffin