server {

listen 80;
listen [::]:80;
server_name DOMAINS;

root /home/deploy/apps/APPLICATION/public;
index index.html;

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

}