Subdomain
This guide will show you how to whitelist your GoodAccess IP address in NGINX for a subdomain.
Whitelist an IP in NGINX for subdomain
sudo vim /etc/nginx/sites-enabled/blog.confserver {
server blog.example.com;
allow 45.43.23.21;
deny all;
}Restart NGINX
sudo nginx -tsudo systemctl restart nginxLast updated
Was this helpful?