Prev / Next / /home/pochi/ChangeLog

Debian で Apache + mod-ssl の設定[computer]

2004-12-09

これもメモ。

apt-get install libapache-mod-ssl
apt-get install libapache-mod-ssl-doc

で、設定ファイルを追加。

cat /usr/share/doc/libapache-mod-ssl-doc/examples/mod-ssl.conf >> /etc/apache/httpd.conf
zcat /usr/share/doc/libapache-mod-ssl-doc/examples/vhost.conf.gz >> /etc/apache/httpd.conf
apachectl configtest

いちおうこのままでも動く。
鍵を作るのは以下のような感じ。

mod-ssl-makecert

apache の再起動。なんと startssl とかはしなくても OK

apachectl stop
apachectl start

permlink