Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Let's Encrypt with semiautomatic into Nginx configuration https     - CentOS7 install JDK (Linux)

- Brief Linux commands (Linux)

- Upgrade to Linux Mint 16 petra Mint 17 Qiana (Linux)

- Linux Basics Tutorial: Combining awk delete data before the specified date hdfs (Linux)

- Linux disk partition batch format mount script (Linux)

- Dynamic programming Android (Programming)

- Tomcat itself through simple movement separation (Server)

- Android Launcher3 Application List Modify a transparent background (Linux)

- Getting the Linux shell expr use (Programming)

- Repair CentOS 6.4 Grub boot (Linux)

- Atlassian Linux Shell Scripting the confluence remote backup methods (Linux)

- Performance issues under CentOS 6.5 VLAN devices (Linux)

- iSCSI + multipath achieve DM multipath storage (Server)

- redis main building and disaster recovery from a cluster deployment (Database)

- SUSE Linux firewall configuration notes (Linux)

- Ubuntu 14.10 used ifconfig commands to manage your network configuration (Linux)

- Linux based exercises, interview questions (Linux)

- Make Linux more secure server tips (Linux)

- C ++ two second pointer memory model (two-dimensional array) (Programming)

- Linux server dual-card dual-IP and single-card dual-IP configuration method (ReHat / CentOS) (Server)

 
         
  Let's Encrypt with semiautomatic into Nginx configuration https
     
  Add Date : 2018-11-21      
         
         
         
  With Let's Encrypt, configure SSL certificate is no longer difficult, but Let's Encrypt is still in its very early stages, for nginx automated configuration support is not good. But we can write their own point of feet have been semi-automated configuration of our own nginx server.

One line of command is all pointing nginx domain on this server for SSL Certificates
With the Crontab task to automatically renew certificates
Simple nginx configuration examples. You can redirect all www at the beginning of the domain name to the domain name without the www, you can also get a A + rating of SSL Labs.
installation

I Let's Encrypt as a submodule integrated into this project it. So only you need to clone a project that is enough.

git clone https://github.com/songchenwen/nginx-ssl-config-with-letsencrypt.git
cd nginx-ssl-config-with-letsencrypt
git submodule init
git submodule update --remote
use

Request a certificate

Edit ssl / config

Fill in your domain name. Can fill more than one domain name, the domain name will be used as the first Common Name. Certificates will be stored in / etc / letsencrypt / live / down, next to Common Name directory named.

Let's Encrypt select a server. acme-v01 server is the official beginning of the server, there are strict limits the number of requests, we do not recommend it to do the experiment. acme-staging at the beginning of the server is a test server, there is no limit the number of requests, but does not check out a valid certificate, it is recommended to use this server to test the configuration.

Configuring nginx

Let's Encrypt in the application and renewal of certificates need to use a http server to put a file so that it can verify your ownership of this domain.

I use a simple configuration file letsencrypt_challenge nginx to redirect all domain names point to this server http request to the corresponding https requests, leaving only the required verification Let's Encrypt URL remain on http.

sudo cp nginx-config / letsencrypt_challenge / etc / nginx / sites-available / letsencrypt_challenge
sudo ln -s / etc / nginx / sites-available / letsencrypt_challenge / etc / nginx / sites-enabled / letsencrypt_challenge
sudo nginx -s reload

Execute scripts

Executive ssl / apply_all_certs.sh, follow the prompts to fill in your email, then you can apply for a certificate of good.

bash ssl / apply_all_certs.sh
sudo nginx -s reload
nginx configuration file example

In nginx-config directory, there are three more useful nginx configuration files. Remember to modify them before using, at least remember to replace my domain name to you.

letsencrypt_challenge redirect all point to this server domain http https request to the corresponding request, leaving only the required verification Let's Encrypt URL remain on http.
www_to_none_www redirect all www domain names beginning with https request to the corresponding domain name does not begin with www.
sample_config is a simple server configuration file. This profile can help you easily get SSL Labs on A's score. To the line before the last} configuration uncommented will open HSTS, so your score will become A +.
Crontab mandate automatic renewal certificate

Let's Encrypt certificate issued is valid only for 90 days, so we need a method to automatically renew certificates. A renewal of Crontab task once a month is sufficient. This task should be executed as root, because then we also need to be renewed after about nginx reload configuration to take effect.

sudo crontab -e
Here is the content Crontab task

0 2 1 1-12 * /path/to/ssl/renew_all_certs.sh
     
         
         
         
  More:      
 
- How to Install Cantata MPD 1.3.3 for Ubuntu and Derived Version Users (Linux)
- OpenJDK 7 compiled under Ubuntu 14.04.3 64-bit (Linux)
- Ten linux version of the system (Linux)
- Analysis of potential problems through custom Orabbix monitoring Oracle (Database)
- OpenGL ES 3.0 vertex buffer (Programming)
- Installation Mesos + Marathon + Zookeeper under CentOS 7 (Server)
- Oracle database NUMBER (x, y) data types (Database)
- Oracle Incident Packaging Service (Database)
- Build Eclipse + Maven + Scala-IDEA the Scala Web development environment (Server)
- The most concise explanation of JavaScript closures (Programming)
- Linux common network tools: batch scanning of nmap hosting service (Linux)
- AWR Report (Database)
- Linux PXE unattended installation PXE-E32: TFTP OPen timeout the solution (Linux)
- Five strokes to find out the IP address you want to know (Linux)
- CentOS 6.4 Python 2.6 upgrade to 2.7 (Linux)
- Use Pylint regulate your Python code (Programming)
- ActiveMQ memory settings and flow control (Linux)
- Generated characters using Java Videos (Programming)
- PL / SQL in forall simple test (Database)
- Iptables application layer plug (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.