server {
    listen 80;
    listen [::]:80;
    server_name preview.agentsolutions.tech;

    root /var/www/html/test/agentsolutions-preview;
    index index.html;

    add_header X-Robots-Tag "noindex, nofollow, noarchive" always;

    location / {
        try_files $uri $uri/ /index.html;
    }
}
