I use nginx as web server and I have use minio port is 9000
location = / {
allow ip_1;
allow ip_2;
deny all;
}
all coming ip to port 443/80 is allow. but I want to deny all and allow 2 IP for this port (9000) only ,
Is this possible with nginx?