前端react 发布到nginx

1、拷贝前端文件,去除node_modules。并打包root.zip

2、上传liunx解压,定位到解压文件根目录。如root/

3、安装,cnpm-install.完成。

4、配置nginx.conf.

location/{

roothtml;//可以是绝对路径

indexindex.htmlindex.htm;

try_files$uri/index.html;

}

5、启动nginx-cnginx.conf

相关推荐