Question
How to restrict ip in Nginx?
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;
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.
×