美文网首页
nginx配置react单页应用

nginx配置react单页应用

作者: 坑的心都碎了 | 来源:发表于2018-07-11 10:53 被阅读0次
    server{
        listen 8000;
        server_name oa.hndmjt.com:8000;
        root /home/项目文件夹/dist/;
        index index.html;
        location /{
            try_files $uri $uri/ /index.html;
        }
        location /api {
                    include uwsgi_params;
                    proxy_pass http://www.***.com/api;
            }
    }
    
    

    相关文章

      网友评论

          本文标题:nginx配置react单页应用

          本文链接:https://www.haomeiwen.com/subject/rvzcpftx.html