Report this

What is the reason for this report?

How to restrict ip in Nginx?

Posted on January 11, 2020

Hi, I have two droplets. The first droplet is my frontend and the second is my backend. The first droplet use nginx as proxy reverse. So if client/browser access my site, the first droplet ccall the second droplet to retrieve data. I want to restrict my backend(It use Docker and nginx) by using nginx but i have an issue because it blocks all ips. This is my code: allow XXX.XX.XXX // frontend droplet ; deny all;



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @dmm2019,

It seems you are on the right path to resolve this issue yourself. Having said that, you didn’t mentioned where you added the above rules.

To deny all access, except certain addresses, add a file named server.whitelist, with the following contents:

allow 1.2.3.4; # Allow a single remote host
deny all; # Deny everyone else

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.