blob: f2f561bdfc79e841bc0d2e36250ecbdcce6fb9d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
===========
Secure HTTP
===========
------------
Module: core
------------
:Author: Jan Kneschke
:Date: $Date: 2004/08/29 09:44:53 $
:Revision: $Revision: 1.2 $
:abstract:
How to setup SSL in lighttpd
.. meta::
:keywords: lighttpd, ssl
.. contents:: Table of Contents
Description
===========
lighttpd support SSLv2 and SSLv3 if it compiled against openssl.
Configuration
-------------
To enable SSL for the whole server you have to provide a valid
certificate and have to enable the SSL engine.::
ssl.engine = "enable"
ssl.pemfile = "/path/to/server.pem"
As SSL and named-based virtual hosting can not work together you
have to use IP-based virtual hosting if you want to run multiple
SSL-servers with one lighttpd: ::
$SERVER["socket"] == "10.0.0.1:443" {
ssl.engine = "enable"
ssl.pemfile = "www.example.org.pem"
server.name = "www.example.org"
server.document-root = "/www/servers/www.example.org/pages/"
}
Self-Signed Certificates
------------------------
A self-signed SSL cerifitcate can be generated with: ::
$ openssl req -new -x509 \
-keyout server.pem -out server.pem \
-days 365 -nodes
|