How to Use Nginx as a Reverse Proxy for a Server

How to Use Nginx as a Reverse Proxy for a Server

Daily short news for you
  • Revealing how readers of 2coffee.dev will read articles in the future 🫣

    » Read more
  • Microsoft has decided to "transform" the Windows Subsystem for Linux (WSL) on Windows into an open-source project 👏

    Back when I was still into gaming on the computer, I absolutely hated Ubuntu. Probably because it couldn't run games. But programming with Linux kernels was such a delight. So I found myself in a dilemma. I wanted to use Linux but had to stick with Windows.

    Microsoft's release of WSL was like a necessary savior. Quite cool. It's simply using Linux commands on Windows. However, it's still not entirely "smooth" like a real operating system. Now that they’ve open-sourced it, I hope there will be even more improvements 🙏

    microsoft/WSL

    » Read more
  • When researching a particular issue, how do people usually take notes? Like documents found, images, links, notes...

    I often research a specific topic. For example, if I come across an interesting image, I save it to my computer; documents are similar, and links are saved in my browser's Bookmarks... But when I try to find them later, I have no idea where everything I saved is, or how to search for it. Sometimes I even forget everything I've done before, and when I look back, it feels like it's all brand new 😃.

    So I'm nurturing a plan to build a storage space for everything I learn, not just for myself but also with the hope of sharing it with others. This would be a place to contain research topics, each consisting of many interconnected notes that create a complete notebook. Easy to follow, easy to write, and easy to look up...

    I write a blog, and the challenge of writing lies in the writing style and the content I want to convey. Poor writing can hinder the reader, and convoluted content can strip the soul from the piece. Many writers want to add side information to reinforce understanding, but this inadvertently makes the writing long-winded, rambling, and unfocused on the main content.

    Notebooks are created to address this issue. There's no need for overly polished writing; instead, focus on the research process, expressed through multiple short articles linked to each other. Additionally, related documents can also be saved.

    That’s the plan; I know many of you have your own note-taking methods. Therefore, I hope to receive insights from everyone. Thank you.

    » Read more

What is Nginx?

Nginx là gì

There's no need to say much, I'm sure many of you already know. Nginx is an HTTP server and reverse proxy server. It can also be used as a TCP/UDP server.

Nginx is commonly used for HTTP servers, and it is often used as a reverse proxy. This means that it is a server capable of directing and hiding other services inside the server.

To make it easier to understand, let's take a look at the illustration of the reverse proxy position in a web server system. We can see that all user queries (requests) go through the reverse proxy before being routed to the servers or services inside the server. This also means that users only know and interact with the proxy server without knowing the internal components.

What does a Reverse Proxy do?

Let's imagine a server with 2 services: Frontend (FE) and Backend (BE). The FE is set to run on port 8081, and the BE runs on port 8080. The FE communicates with the BE through a REST API.

Assuming the server's IP address is x.x.x.x, I can access the FE by accessing the address x.x.x.x:8081, and the BE by accessing x.x.x.x:8080. Now, with the domain name 2coffee.dev pointing to the IP, I can access them more easily as 2coffee.dev:8081 and 2coffee.dev:8080.

As you can see, my 2 services are accessed via the domain name (or IP address) along with the port. This means that users know which port my services are running on, which can be exploited for information gathering.

Furthermore, for easy management and professional appearance, I want the FE to be accessed directly from the address 2coffee.dev, while the API is accessed through the subdomain api.2coffee.dev. So, how can this be done? The simple answer is using Nginx as a reverse proxy.

How to Set Up a Reverse Proxy Server with Nginx?

The goal is to see the FE page when accessing 2coffee.dev and to be able to call the API when accessing api.2coffee.dev.

In this section, we will explore the basic reverse proxy configurations. First, make sure that both services on your server can be accessed locally through the addresses localhost:8081 and localhost:8080.

You can use the curl command to check that:

$ curl localhost:8081
# <response>
$ curl localhost:8080
# <response>

If you receive a response, everything is fine. If you receive any error messages indicating that the connection cannot be established, you need to check if the services are started correctly.

Nginx is installed on the server, you can either install Nginx directly on the server or use Docker to install it. If you use Docker, make sure you know how to set up the Docker network to allow it to access the above 2 services. One more note is that you need to map the container's ports 80 and 443 to the server's ports 80 and 443, or you can simply run the container in host network mode.

Open the file /etc/nginx/nginx.conf and check if it includes the following line:

...  
  ...  
  include /etc/nginx/conf.d/*.conf;
...  

This is the configuration for Nginx to automatically load the config files in the /etc/nginx/conf.d directory.

Create a file named my-app.conf in the /etc/nginx/conf.d directory. Here, I'll be using the vi editor.

$ vi /etc/nginx/conf.d/my-app.conf

The contents of the file will look like this:

server {
    listen 80;
    server_name 2coffee.dev;

    location / {
      proxy_pass http://localhost:8081;
      proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $host;
      proxy_set_header REMOTE_ADDR $remote_addr;
      proxy_set_header X-Forwarded-Proto $scheme;
    }
}

server {
    listen 80;
    server_name api.2coffee.dev;

    location / {
      proxy_pass http://localhost:8080;
      proxy_set_header X-Real-Ip $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $host;
      proxy_set_header REMOTE_ADDR $remote_addr;
      proxy_set_header X-Forwarded-Proto $scheme;
    }
}

Save and restart Nginx:

$ sudo nginx -s reload

For those using Docker, restart the Nginx container. One thing to note is that you need to mount the Nginx config files from the container to the outside to avoid losing the configuration when restarting the container.

To explain lines 7 to 11 in the my-app.conf file, you can understand them as follows: Since Nginx acts as a forwarder for user queries to the services, the headers need to be configured so that Nginx knows how to forward them to the services. Otherwise, the header information may be incorrect.

Conclusion

Nginx is a very popular server nowadays due to its powerful features.

Reverse proxy is a great feature provided by Nginx. It helps to direct and hide services inside the server, and using it also makes it easy to set up subdomains.

Premium
Hello

Me & the desire to "play with words"

Have you tried writing? And then failed or not satisfied? At 2coffee.dev we have had a hard time with writing. Don't be discouraged, because now we have a way to help you. Click to become a member now!

Have you tried writing? And then failed or not satisfied? At 2coffee.dev we have had a hard time with writing. Don't be discouraged, because now we have a way to help you. Click to become a member now!

View all

Subscribe to receive new article notifications

or
* The summary newsletter is sent every 1-2 weeks, cancel anytime.

Comments (2)

Leave a comment...
Avatar
Trần Cường2 years ago

Mình làm theo mà đang bị lỗi không khởi động lại được nginx ko biết sai ở đâu ko :(

Reply
Avatar
Xuân Hoài Tống2 years ago

Lỗi như thế nào thế bạn

Avatar
Linh Trịnh Mạnh3 years ago

Cho mình hỏi cái reverse proxy này có phải giống như là park domain vào host không nhỉ?

Reply
Avatar
Xuân Hoài Tống3 years ago

Không giống đâu bạn, nó giúp cấu hình subdomain trỏ đến sẻvice trên máy chủ thôi