產生SSL憑證讓apache2使用
$ sudo apt-get install openssl $ sudo a2enmod ssl $ sudo mkdir /etc/apache2/ssl $ openssl req -new -x509 -days 365 -nodes -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/ssl/apache.key $ vim /etc/apache2/sites-available/000-default.conf <VirtualHost *: 443 > # The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the ServerName # specifies what hostname must appear in the request's Host: header to # match this virtual host. For the default virtual host (this file) this # value is not decisive as it is used as a last resort host regardless. # However, you must set it for any further virtual host explicitly. #ServerName www.example.com ServerAdmin webmaster@localhost DocumentRoot /var/www/html SSLEngine On SSLCertificateFile /etc/ap...