Linux サーバ構築 ( Fedora Core5 ) - WEBサーバ
apache2 - 2.SSL/TLS の設定
mod_ssl を使用し、apache で SSL/TLS の基本設定を行ないます。
- mod_ssl のインストール
yum を使用し、最新の rpm パッケージよりインストールします。
# yum install mod_ssl Installed: mod_ssl.i386 1:2.2.0-5.1.2 Dependency Installed: distcache.i386 0:1.4.5-13 Complete!
- httpd デーモンを再起動します。
# /etc/init.d/httpd restart httpd を停止中: [ OK ] httpd を起動中: [ OK ]
- https ポート ( tcp:443 ) が listen されていることを確認します。
# netstat -nl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 :::80 :::* LISTEN tcp 0 0 :::22 :::* LISTEN tcp 0 0 :::443 :::* LISTEN
- ブラウザで下記の URL にアクセスし、表示を確認します。
URL https:// ( サーバアドレス )
( 最終更新日時 : 2008/08/31 21:24:48 )