Hello community,
I’m trying to use nginx to restrict the access of mailcow UI for /admin/
location.
I followed the docs () and I’ve created a extra.conf in data/conf/nginx
with inside :
server {
location /admin/ {
allow 192.168.1.100; # Allow this specific IP
deny all; # Deny all other IPs
}
}
But /admin/ is still open to every IP after a compose down & up.
Someone has an idea ?
–
Léo.