Closed
Description
Hi,
Thanks for creating an awesome tool for managing nginx proxy configs.
Is it possible to consider adding IP based restrictions to the access lists? This is relatively simple to implement in nginx itself in the location block and can be mixed with the existing auth basic too, e.g:
location / {
# Access List
satisfy any;
allow 10.0.0.0/16;
allow 192.168.0.0/16;
allow 172.0.0.1;
deny 1.2.3.4;
auth_basic "Authorization required";
auth_basic_user_file /data/access/1;
deny all;
# Force SSL
include conf.d/include/force-ssl.conf;
Thanks again!