server {
        listen 80;
        server_name _;
        # Replace <path_to_repo> with your directory path
        root <path_to_repo>/vegvisir/public;
        location ~ /* {
                try_files /index.php = 503;
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/run/php/php8.3-fpm.sock;
        }
}