GhostBlog installation error nginx

I have a ghost installation with directadmin, I did an nginx configuration, but the “404” error is always shown on my website, never loading completely.

My nginx config:

    location /{
        proxy_pass             http://127.0.0.1:2368; #Change the wss port
        proxy_set_header Host  $host;
        proxy_read_timeout     60;
        proxy_connect_timeout  60;
        proxy_redirect         off;

        # Allow the use of websockets
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
      proxy_set_header X-Forwarded-Proto $scheme;
    }


Fix it:

    location ^~ / {
      proxy_pass http://127.0.0.1:2368;
      proxy_redirect off;
      proxy_http_version 1.1;        
      proxy_pass_request_headers on;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-NginX-Proxy true;
      proxy_set_header X-Forwarded-Host $host;
      proxy_set_header X-Forwarded-Server $host;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header X-Forwarded-Proto https;      
      proxy_set_header 'Access-Control-Allow-Origin' '*';
      proxy_set_header 'Access-Control-Allow-Credentials' true;          
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      proxy_set_header Host $host;
      proxy_cache_bypass $http_upgrade;
    }