Com base em esta resposta , a configuração padrão do Nginx foi alterada da seguinte forma:
/etc/nginx/nginx.conf
server {
listen 80;
server_name <ip_address_nginx_server>;
root /usr/share/nginx/html;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
# redirect server error pages to the static page /40x.html
#
error_page 404 /404.html;
location = /40x.html {
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
return 403;
}
server {
listen 80 default_server;
server_name mydomain.com;
}
}
Uma vez que o servidor Nginx foi reiniciado e um navega para ip_address_nginx_server
a 403 é retornado, enquanto http://example.com
está acessível.