server {
    #default conf that denies any domains other than the virtual hosts
    #that are configured elsewhere
    
    listen 80 default; 
    server_name _;
    deny all;
}

