server {
  gzip on;
  listen 0.0.0.0:80;
  listen [::]:80;
  root /var/www/html;
  server_tokens off;

  location / {
    add_header 'Allow-Control-Allow-Origin' '*';
    try_files $uri $uri/ /index.html;
  }
}
