ubuntu lighttpd 添加https支持
2012 年 6 月 30 日 ubuntu lighttpd 添加https支持无评论
新建一个放key的文件夹
mkdir /etc/lighttpd/.sslkey/
cd /etc/lighttpd/.sslkey/
生成证书
openssl req -new -x509 -keyout server.pem -out server.pem -days 3650 -nodes
在lighttpd.conf中增加以下内容
$SERVER["socket"] == "0.0.0.0:443" {
ssl.engine = "enable"
ssl.pemfile = "/etc/lighttpd/.sslkey/server.pem"
}
重启服务即可
发表评论