Domain
This guide will show you how to whitelist your GoodAccess IP address in NGINX for a domain.
Whitelist IP in NGINX for a domain
http{
...
allow 45.43.23.21;
deny all;
...
}
server{
...
allow 45.43.23.21;
deny all;
...
}
location / {
allow 45.43.23.21;
deny all;
}Restart NGINX
Last updated
Was this helpful?