📌  相关文章
📜  如何避免 nginx not found 404 错误 ubuntu react app - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:20.742000             🧑  作者: Mango

代码示例1
location / {
            root /var/www/myapp/build;
            index index.html;
            try_files $uri /index.html$is_args$args =404;
    }