Home Nginx How to Block Image Hotlinking in Nginx Web Server

How to Block Image Hotlinking in Nginx Web Server

Consider a scenario, you have finally managed to create and host your first web app under a Linux system and you wanted your web app to lure continuous user traffic, you beautified it with some custom images of which you have full copyright.

However, while comparing different web apps with a similar spectrum to yours, you discover your custom images are being used without your consent. These secondary sites are using your images’ direct link to display them on their platforms. Each time your web app loads, your custom images also load on their web app platforms.

This issue is called image hotlinking and it’s quite difficult to link it to copyright violation since these platforms are only mirroring your images. If you are lucky enough to be using Nginx as your primary web server, we can find a workaround for this issue.

This article guide will walk us through configuring the Nginx web server to prevent image hotlinking in Linux.

Problem Statement

We will need access to the following resources for this article to be more practical and relatable:

  • A remote machine with a known IP address (192.168.100.29).
  • A host machine with a known IP address (192.168.100.3).
  • Nginx is installed on the remote machine.
  • Some image files are stored on the remote machine web directory.

Block Image Hotlinking in Nginx Web Server

We first need to access the default website Nginx configuration file:

$ sudo nano /etc/nginx/sites-available/default 

Alternatively, if you have configured a virtual host and want to prevent image hotlinking to a specific web app e.g your_site.com, the path to the web app Nginx configuration file will be something like:

$ sudo nano /etc/nginx/sites-enabled/your_site.conf

We will add the following lines of code inside the server {} block:

location ~ .(gif|png|jpe?g)$ {
   valid_referers none blocked ubuntumint.com *.ubuntumint.com;
   if ($invalid_referer) {
      return 403;
   }
}

The line entry valid_referers points to web apps to prevent image hotlinking from all domains except our domain (e.g ubuntumint.com)

Block Image Hotlinking Nginx
Block Image Hotlinking Nginx

If you want to block image hotlinking for files in a specific directory, then add the following lines in your NGINX configuration file.

location /uploads/ {
   valid_referers none blocked ubuntumint.com *.ubuntumint.com;
   if ($invalid_referer) {
      return 403;
   }
}

Save the file changes and restart Nginx:

$ sudo systemctl restart nginx

Testing Image Hotlinking in Nginx

Supposing our remote machine has the following image “leafy.png” on the web directory and you try to hotlink from our host computing using the Curl command in the following manner:

$ curl -H "Referer: http://192.168.100.3/" -I https://www.ubuntumint.com/secrets/leafy.png 
Check Image Hotlinking in Nginx
Check Image Hotlinking in Nginx

The 403 Forbidden error in the attempt confirms that we have successfully stopped image hotlinking. Stopping image hotlinking preserves the integrity and identity of your web apps from being overexposed.

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

Got something to say? Join the discussion.

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.