SSLの設定2015/05/11 |
SSLでの暗号化通信ができるように設定します。なお、HTTPS は 443/TCP を使用します。
|
|
[1] | |
[2] | SSLの設定です。 |
root@www:~#
vi /etc/apache2/sites-available/default-ssl.conf # 3行目:管理者アドレス変更 ServerAdmin webmaster@srv.world
# 32,33行目:[1]で作成したものに変更 SSLCertificateFile /etc/ssl/private/server.crt SSLCertificateKeyFile /etc/ssl/private/server.key
a2ensite default-ssl Enabling site default-ssl. To activate the new configuration, you need to run: service apache2 reloadroot@www:~# a2enmod ssl Considering dependency setenvif for ssl: Module setenvif already enabled Considering dependency mime for ssl: Module mime already enabled Considering dependency socache_shmcb for ssl: Enabling module socache_shmcb. Enabling module ssl. See /usr/share/doc/apache2/README.Debian.gz on how to configure SSL and create self-signed certificates. To activate the new configuration, you need to run: service apache2 restartroot@www:~# systemctl restart apache2 |
Webブラウザでテストページに https でアクセスします。 独自証明書なので以下のような警告が出ますが、自身のサイトは問題ないので続行します。 |
HTTPS でアクセスできました。 |
Sponsored Link |