Press ESC to close

Nginx Proxy & Cloudflare: How to restore a real IP address

Hello!

Today we will address a very simple issue that arises when setting up a website and connecting it to a proxy from Cloudflare.

Case study

When your site is handled by Cloudflare, the IP addresses recorded in the server logs come from Cloudflare, not from actual users visiting the site. That’s because the traffic goes through Cloudflare’s network first. Cloudflare acts as a reverse proxy, speeding up page loads and caching static resources.

This situation can create problems for some web applications. Many of them require access to users’ real IP addresses, for example, to identify them or analyze their traffic. Fortunately, there is a way to restore the display of real IP addresses in the server logs using Nginx Proxy Manager and Cloudflare. In this article, we will explain how to do this and configure the Nginx server to correctly log the real IP addresses of users.

Nginx Proxy Manager & Cloudflare, without proxy Server without proxy – the logs show the actual public IP address of the client.

Nginx Proxy Manager & Cloudflare, with proxyUse of Cloudflare proxy – the logs show the Cloudflare proxy address as the incoming IP.

Nginx Proxy Manager & Cloudflare, proxy with configurationUse of Cloudflare proxy and new configuration in NPM – the logs show the actual public IP address of the client.

Introduction

What is a proxy from Cloudflare?

Cloudflare, logo

Reverse proxy from Cloudflare is a service that bridges the communication between clients (browsers) and the server on which your website is running. When traffic is routed through the proxy, it is Cloudflare that receives requests from clients. It then passes them to your origin server and sends the response back to the clients.

Cloudflare’s operation as a reverse proxy has several key advantages:

  • Speeds up the loading of web pages. Cloudflare caches static resources such as images, JavaScript and CSS files. It then distributes them from its global network of edge servers.
  • It provides an additional layer of security, protecting against many types of attacks, including DDoS.
  • It optimizes network traffic by routing it along the shortest routes.

However, this architecture causes you to see Cloudflare server IP addresses in the origin server logs instead of the real IP addresses of customers visiting your site. This is the problem we will solve by configuring the Nginx server to display users’ real IP addresses.

What is Nginx Proxy Manager?

Icon: Nginx Proxy Manager

Nginx Proxy Manager (NPM) is a popular open-source tool that greatly simplifies the management and configuration of the Nginx proxy server. Next to Apache, it is one of the most widely used HTTP servers in the world. However, its text file-based configuration can be complicated, especially for less experienced users.

NPM provides a user-friendly point-and-click GUI that abstracts the main Nginx concepts, such as proxy servers, upstream hosts, SSL certificates and redirection rules. As a result, even people without in-depth knowledge can easily configure advanced HTTP traffic routing rules and manage multiple sites and applications running on a single server.

NPM is particularly useful in scenarios where the server is used as a central reverse proxy in front of services such as Nginx, Apache, or other web applications. It allows for easy configuration and maintenance of complex HTTP/HTTPS traffic routing topologies in one place.

Preparation

In order to prepare the tutorial, we will adopt an established domain name and certain configuration names, shown below. For customized configuration, apply settings according to individual requirements.

Step 1 – Logging into Proxy Manager

  • Log in to the manager:
    • Open a web browser and go to the address where NPM is running (e.g. http://IP-ADDRESS:81).
    • Go to the list of Proxy Hosts and select the desired host you want to edit.

    Nginx Proxy Manager and Cloudflare, host proxy menu

    • Go to the Advanced tab and paste the following code. It is created based on the list of IP addresses described above from Cloudflare.
# IPv6 Cloudflare - Jeżeli nie obsługujesz połączeń w tej adresacji, nie musisz wklejać tego do konfiguracji hosta
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2a06:98c0::/29;
set_real_ip_from 2c0f:f248::/32;

# IPv4 Cloudflare
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from 162.158.0.0/15;
set_real_ip_from 104.16.0.0/13;
set_real_ip_from 104.24.0.0/14;
set_real_ip_from 172.64.0.0/13;
set_real_ip_from 131.0.72.0/22;

real_ip_header X-Forwarded-For;
  • The whole setup looks as follows, as shown in the following screen shot.
  • Save the configuration by clicking on the Save button.
  • Done!

In conclusion – If you have additional questions about the configuration, go ahead and leave a comment under this article or contact me directly. I will be happy to answer any concerns and help solve any problems. Your questions can help improve the guides for other users.

Additional materials and information

For further exploration and more information, I recommend checking out the links below. They are valuable sources that were used in the development of this guide.

Read also

Filip Chochół

Filip Chochol runs two blogs: personal “chochol.io” and together with his girlfriend “Warsaw Travelers” about travel. He specializes in IT resource management and technical support, and has been active in the field of cyber security awareness for almost two years. A proponent of open-source technologies, he previously worked in the film and television industry in the camera division (2013-2021). After hours, he develops interests in smart homes and networking.

Leave a Reply

Your email address will not be published. Required fields are marked *


This site uses Akismet to reduce spam. Learn how your comment data is processed.