进入/etc/ngin文件夹,并且新建自己的配置目录如:myconfig,并且进入此目录,新建一个配置文件如:ghmall.conf,编辑以下内容并且保存:
上传前端文件(执行npm run build后,项目下会生成一个dist文件夹)至该配置文件中配置的地址如:/usr/portal/ghmall-portal/dist
进入/etc/ngin文件夹,编辑配置文件:vim nginx.conf
修改为自己的server配置:
server {
listen 9527
server_name localhost
location / {
root /usr/portal/ghmall-portal/dist
}
location /ghmall/ {
proxy_pass http://localhost:8118
}
然后重新启动nginx:nginx -s reload
输入systemctl start nginx开启 nginx 服务
浏览器上输入yourIpAdress:9090/便可以访问你的页面了
另外systemctl status nginx可以查看 nginx 的运行状态
以及systemctl stop nginx可以关闭 nginx 服务
作为前端开发搭建本地服务尤其重要,下边的方法三步完成服务器的搭建:
$ npm install http-server -g // 全局安装http-server
$ cd demo2 // 打开要共享的文件
$ http-server // 搭建服务
https://segmentfault.com/q/1010000003926981
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)