Please suggest me how can I add SSL support to thttpd. Or if I can put it straight, how to make my web server have SSL support?
Asked
Active
Viewed 456 times
-2
-
1Don't use ancient unmaintained web servers? – Michael Hampton May 13 '13 at 18:45
-
Michael Hampton,May be its ancient but I could not shift to other web servers now! Is it possible to add SSL support to thttpd? – crusader May 13 '13 at 18:48
-
1Fire up an instance of [stunnel](https://www.stunnel.org/index.html). It is a basic HTTPS to HTTP proxy. – Zoredache May 13 '13 at 23:33
1 Answers
4
thttpd purposely does not support SSL as it is not intended for anything but the simplest embedded purposes. You could conceptually use some sort of SSL Reverse Proxy, but that really defeats the purpose of the software.

Chris S
- 77,945
- 11
- 124
- 216
-
So... if I want to have my web server use SSL I need to look for alternatives! Thanks Chris! – crusader May 13 '13 at 18:54
-
Yes, either a full-function httpd, or a frontend reverse proxy. Or you could always add the SSL capability yourself if you know how to program. – Chris S May 13 '13 at 18:55
-