404: Website Not Found (but emotionally it’s a 200)

Nginx received a request for a host it doesn’t recognize: (mystery meat)

Either you typed the domain wrong, your DNS is having a little nap, or you just knocked on the wrong internet door. 🚪✨

If you’re the rightful owner: add a server_name for this host, or point your DNS to the correct IP. If you’re not the owner: consider adopting a cat instead.

# You probably want something like:
server {
  listen 80;
  server_name example.com www.example.com;
  # ...
}
      

Fun fact: sending random Host headers is the internet’s version of yelling names into the void.