How to redirect HTTP to HTTPS in Nginx

How to redirect HTTP to HTTPS in Nginx

Nginx, pronounced "Engine x", is a free, open source, Linux-based high-performance web and reverse proxy server responsible for managing and handling the load of the largest website traffic on the Internet. Nginx is a powerful redirection tool that can be easily configured on your system to redirect insecure or unencrypted HTTP web traffic to encrypted and secure HTTPS web servers. If you are a system administrator or developer, then you should often use Nginx server.

[[352811]]

In this article, we will look at how to redirect web traffic from HTTP to secure HTTPS in Nginx. HTTP message headers are transmitted in a plain text string format, while HTTPS uses SSL/TLS to encrypt the communication between the client and server systems. Therefore, HTTPS should replace HTTP for many reasons:

  • All data in both directions between client and server is encrypted. However, if intercepted, no one can access sensitive information.
  • When you use HTTPS, Google Chrome and other browsers assume your website domain is secure.
  • The HTTPS version uses the HTTP/2 protocol to improve the performance of the website you specify.
  • If you serve your website domain over HTTPS, the website will rank higher on Google as it prefers all websites that are secured with HTTPS.
  • It is best to redirect traffic HTTP to HTTPS in Nginx in a separate server block for each site version. It is also recommended to avoid redirecting traffic using the "if" direction, which may cause unexpected server behavior.

Redirect all traffic from HTTP to HTTPS

Add the following changes to your Nginx configuration file in order to redirect all traffic from HTTP to the HTTPS version:

  1. server {
  2. listen 80 default_server;
  3. server_name _;
  4. return 301 https://$host$request_uri;
  5. }

Below, we explain each of the above terms in detail:

  • Listen 80 default_server - This will instruct your system to capture all HTTP traffic on port 80
  • Server_name _ - Order in which it is matched after receiving a request
  • Return 301 https://$host$request_uri - This tells your search engine to redirect it permanently. It specifies that the variable $host holds the domain name.

After changing the configuration settings, you need to reload the Nginx service on your system. So, reload the Nginx service with the following command:

  1. $ sudo systemctl reload nginx

Redirect HTTP to HTTPS for a specified domain name in Nginx

After installing the SSL certificate on your domain, you will have two server block options for this domain name. One block is for the HTTP version listening on port 80, and the second version is for HTTPS listening on port 443. However, to redirect a website domain from HTTP to HTTPS, you need to open the Nginx configuration. You can find this configuration file in the /etc/nginx/sites-available directory. If you do not find this file, you can search for it in /etc/nginx/nginx, /usr/local/nginx/conf or /usr/local/etc/nginx and then perform the following changes in this file:

  1. server {
  2. listen 80;
  3. server_name linuxmi.com www.linuxmi.com;
  4. return 301 https://linuxmi.com$request_uri;
  5. }

Let's understand the above code line by line.

  • Listen 80 - Using port 80, the server will listen for all incoming connections to the specified domain name.
  • Server_name linuxmi.com www.linuxmi.com – It specifies the domain name. So, replace it with the domain name of the website you want to redirect.
  • Return 301 https://linuxmi.com$request_uri - Moves traffic to the HTTPS version of the site.
  • The $request_uri variable is used for the full original request URI, which also includes parameters.

Using the following method, you can redirect traffic to the HTTPS www version to the non-www version of your site. For both non-www and www versions, it is recommended to create redirects in separate server blocks. Let's explain this with an example. If you want to redirect www HTTPS requests to the non-www version, you should follow the following configuration:

  1. server {
  2. listen 80;
  3. server_name linuxmi.com www.linuxmi.com;
  4. return 301 https://linuxmi.com$request_uri;
  5. }
  6. server {
  7. listen 443 ssl http2;
  8. server_name www.linuxmi.com;
  9. # . . . other code
  10. return 301 https://linuxmi.com$request_uri;
  11. }
  12. server {
  13. listen 443 ssl http2;
  14. server_name linuxmi.com;
  15.  
  16. # . . . other code
  17. }

Replace domain name with your domain name, for example www.linuxmi.com.

Summarize

We have discussed how to redirect traffic from HTTP version to HTTPS on Nginx server. By changing the Nginx configuration file settings, you can easily redirect specific domains or all to HTTPS. This method we mentioned in this article can make your website more secure by changing the user experience.

<<:  Ethernet Packet Architecture

>>:  Quantum computing is always mixed, which requires constant coordination

Recommend

What are the differences between HTTP and HTTPS besides security?

HTTP and HTTPS are two common network protocols, ...

Interrupt or poll? It's so troublesome to get a data packet!

New employees in the network department My name i...

The fatal factor affecting TCP connection throughput: HOL

1. What is HOL HOL means Head of line blocking. I...

How edge computing, edge networking, and edge data management work together

Edge computing, edge networking, and edge data ma...

...

AI adds power, lossless network leads to the next stop

How efficient can network transmission be? Let...

The Smart Network: Cisco's most disruptive innovation in a decade

A little over a year ago, my colleague David McGr...

Singapore to shut down 3G and reallocate spectrum for 5G

Singapore will shut down its 3G network in July n...

How Apple's iCloud Private Relay powers enterprise VPNs

Apple's iCloud Private Relay service offers p...