Nginx uses SSL module to configure HTTPS support,
The SSL module is not installed by default, and if you want to use the module, you will need to specify the –with-http_ssl_module parameter at compile time, and the installation module relies on the OpenSSL library and some reference files, usually not in the same package. Usually this file name is similar to Libssl-dev.
Generate certificate
You can generate a simple certificate by using the following steps:
First, go to the directory where you want to create the certificate and private key, for example:
- $ cd/usr/local/nginx/conf
Create a server private key, and the command will let you enter a password:
- $ OpenSSL genrsa-des3-out server.key 1024
Create a certificate (CSR) for the signing request:
- $ OpenSSL req-new-key server.key-out SERVER.CSR
Remove the required password when loading SSL-supported Nginx and using the above private key:
- $ CP Server.key server.key.org
- $ OpenSSL rsa-in server.key.org-out Server.key
Configure Nginx
The last token certificate uses the above private key and the CSR:
- $ OpenSSL x509-req-days 365-in server.csr-signkey server.key-out server.crt
Modify the Nginx configuration file to include the newly tagged certificate and private key:
- server {
- server_name your_domainname_here;
- Listen 443;
- SSL on;
- SSL_CERTIFICATE/USR/LOCAL/NGINX/CONF/SERVER.CRT;
- Ssl_certificate_key/usr/local/nginx/conf/server.key;
- }
Restart Nginx.
This can be accessed in the following ways:
Https://YOUR_DOMAINNAME_HERE
In addition, the following code can be added to achieve 80 port redirection to 443IT People's paradise
- server {
- Listen 80;
- server_name ww.centos.bz;
- Rewrite ^ (. *) https://$server _name$1 permanent;
- }
Reprint please indicate article source: http://www.centos.bz/2011/12/nginx-ssl-https-support/
http://www.bkjia.com/PHPjc/1084387.html www.bkjia.com true http://www.bkjia.com/PHPjc/1084387.html techarticle Nginx uses SSL module to configure HTTPS support, the SSL module is not installed by default, if you want to use the module you need to specify the With-http_ssl_module parameter at compile time, the installation module depends on ...