發表文章

目前顯示的是 12月, 2016的文章

產生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

產生SSL憑證讓nginx使用

$ sudo mkdir /etc/nginx/ssl $ cd /etc/nginx/ssl $ sudo openssl genrsa -des3 -out server.key 2048 $ sudo openssl req -new -key server.key -out server.csr $ sudo cp server.key server.key.org $ sudo openssl rsa -in server.key.org -out server.key $ sudo openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt $ vi /etc/nginx/conf.d/ssl.conf # HTTPS server server { listen 443; server_name example.com; ssl on; ssl_certificate /etc/nginx/ssl/server.crt; ssl_certificate_key /etc/nginx/ssl/server.key; } $ /etc/init.d/nginx restart 參考連結: https://www.digitalocean.com/community/tutorials/how-to-create-a-ssl-certificate-on-nginx-for-centos-6