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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.