Home  >  Article  >  Operation and Maintenance  >  Nginx reverse proxy HTTPS configuration to ensure website data transmission security

Nginx reverse proxy HTTPS configuration to ensure website data transmission security

王林
王林Original
2023-07-04 09:01:164209browse

Nginx reverse proxy HTTPS configuration to ensure website data transmission security

With the rapid development of the Internet, network security issues are becoming more and more important. In websites that transmit sensitive data, it is essential to use the HTTPS protocol to encrypt and protect the security of the data. As a high-performance web server and reverse proxy server, Nginx can be configured to implement HTTPS reverse proxy to further ensure the security of website data transmission. This article will introduce how to configure HTTPS reverse proxy in Nginx and provide relevant code examples.

First, you need to ensure that Nginx has been installed correctly and confirm the version number by running the nginx -v command. Next, we will configure Nginx to support HTTPS reverse proxy.

  1. Generate SSL certificate

First, we need to generate an SSL certificate to ensure the security of data during transmission. You can use a free Let's Encrypt certificate or purchase a commercial SSL certificate.

Assume we choose to use Let's Encrypt certificate, install the certbot tool on the server, and run the following command to generate the certificate:

sudo apt-get update
sudo apt-get install certbot
sudo certbot certonly --nginx

Enter the domain name as prompted, and choose to automatically configure Nginx to support it HTTPS.

  1. Configuring Nginx

After generating the certificate, we need to configure Nginx to support HTTPS reverse proxy. Open the Nginx configuration file /etc/nginx/nginx.conf, and add the following content:

http {
    server {
        listen 80;
        server_name example.com;
        return 301 https://$host$request_uri;
    }

    server {
        listen 443 ssl;
        server_name example.com;

        ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;

        location / {
            proxy_pass http://backend-server;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }
}

In the above configuration, we first configured the server block that listens to port 80, and all HTTP requests are redirected to HTTPS. Then, the server block listening on port 443 is configured, the path to the SSL certificate is specified, and the reverse proxy location / is configured to forward the request to the backend server backend-server.

It should be noted that example.com should be replaced with the actual domain name, and backend-server should be replaced with the actual backend server address.

  1. Restart the Nginx service

After completing the configuration, save the file and restart the Nginx service to make the configuration take effect. Run the following command:

sudo service nginx restart
  1. Verify HTTPS Reverse Proxy

Now we can verify HTTPS by visiting https://example.com Reverse proxy configuration. If all goes well, you will see the content being forwarded through the reverse proxy, and your browser's address bar will show an indication of a secure connection.

Summary

Through the configuration of Nginx reverse proxy, we can realize secure data transmission of HTTPS protocol to further ensure the security of website data. In this article, we introduce how to configure Nginx to support HTTPS reverse proxy and provide relevant code examples. In this way, we can ensure the security of the website during data transmission and prevent sensitive data from being stolen or tampered with.

The above is the detailed content of Nginx reverse proxy HTTPS configuration to ensure website data transmission security. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn