server {
  listen 8000;

  root /opt/examples/default/;
  index index.html;

  location / {
    try_files $uri $uri/ =404;
  }
}