Generate a self-signed CA certificate to enable Nginx to support HTTPS

Source: Internet
Author: User
Tags openssl rsa openssl x509

Create a server private key, and the command will let you enter a password:

    1. $ OpenSSL genrsa-des3-out server.key 1024

Create a certificate (CSR) for the signing request:

    1. $ OpenSSL req-new-key server.key-out SERVER.CSR

Remove the required password when loading SSL-supported Nginx and using the above private key:

    1. $ CP Server.key server.key.org

    2. $ OpenSSL rsa-in server.key.org-out Server.key

The last token certificate uses the above private key and the CSR:

    1. $ OpenSSL x509-req-days 365-in server.csr-signkey server.key-out server.crt


server {

Listen 443;

server_name www.baidu.com;

root/var/www/www.baidu.com;

AutoIndex on;

SSL on;

SSL_CERTIFICATE/ETC/NGINX/CERT/SERVER.CRT;

Ssl_certificate_key/etc/nginx/cert/server.key;

Access_log/var/log/nginx/www.baidu.com-access.log main;

Error_log/var/log/nginx/www.baidu.com-error.log warn;

}


This article is from the "Silence" blog, make sure to keep this source http://silencezone.blog.51cto.com/3613477/1867476

Generate a self-signed CA certificate to enable Nginx to support HTTPS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.