如何使用 strapi 更正 nginx conf

how to correct nginx conf with strapi

这个nginx.conf有什么问题? 我不得不换个地方但仍然无法工作..

upstream strapi {
    server localhost:1337   max_fails=1 fail_timeout=5s;
}
server {

# Listen HTTP
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name sh**rk.app;

# Proxy Config
    location / {
        try_files $uri $uri/ @strapi;
    }

    location @strapi{
        proxy_pass http://strapi;
    }

}

好的,你可以用这种方式配置,这是一个很好的方式 deploy strapi on ubuntu server