系统相关
首页 > 系统相关> > linux部署vue或nuxt

linux部署vue或nuxt

作者:互联网

1、如果是vue  运行npm run build 

  如果是nuxt  运行 npm run  generate

  打包dist 到根目录

 

2、在linux安装nginx进行映射

 

3、nginx.conf配置

 server {
        listen       8099;
        #listen       somename:8080;
        server_name   localhost;

       #需注意 /api  要放到 /前面

        location /api/{
            proxy_pass http://XXXX:9201/;    #XXXX为服务器IP
        }

        location / {
            root   /usr/project/dist;     #为当前dist存放目录
            index  index.html login.htm;
        }
     }

4、启动redis

/usr/nginx/sbin/nginx -c  /usr/nginx/conf/nginx.conf     #nginx配置路径

标签:vue,dist,nginx,api,usr,conf,linux,nuxt
来源: https://www.cnblogs.com/hxd9588/p/16458484.html