2     listen [::]:80 fastopen=1024 default_server;
 
   3     listen *:80 fastopen=1024 default_server;
 
   4     listen [::]:443 fastopen=1024 ssl http2; # No default_server here unless certificate specified here too.
 
   5     listen *:443 fastopen=1024 ssl http2; # No default_server here unless certificate specified here too.
 
   7     default_type text/html;
 
   8     return 404 '<html><head><title>404 Not Found</title></head><body bgcolor="white"><center><h1>404 Not Found</h1></center><hr><center>default imagery server vhost. Please use correct URL.</center></body></html>';