openresy报错

使用的1.10.5版本, openresty版本1.21.但是部署halo应用绑定域名之后报错 404 Not Found


nginx 网址boke.jinhot.xyz
配置文件:server {
listen 9800 ;
server_name boke.jinhot.xyz www.jinhot.xyz;
index index.php index.html index.htm default.php default.htm default.html;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
access_log /www/sites/boke.jinhot.xyz/log/access.log;
error_log /www/sites/boke.jinhot.xyz/log/error.log;
location ^~ /.well-known/acme-challenge {
allow all;
root /usr/share/nginx/html;
}
location / {
proxy_pass http://38.12.30.147:4377;
}
}
求各位大佬的帮助

这是f12的报错
Uncaught (in promise) Error: “undefined” is not valid JSON
at A (content.js:1:9544)
boke.jinhot.xyz/:1 Failed to load resource: the server responded with a status of 404 ()

直接 IP:端口 访问 Halo 是否正常。