server {
    listen 80;
    server_name {{ siteB.site_domain }};

    root /var/www/siteB;
    index index.html;

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

    location /health {
        return 200 'SiteB is up';
        add_header Content-Type text/plain;
    }
}