记录一下:
后台是SpringBoot项目,前台是Vue项目,前后端分离,要用宝塔布署上腾讯云服务器。
后台:配置文件的数据写云端的。有关localhost的要改成云服务器的公网IP。执行package命令,双击。将打包出来的jar文件上传到面板。
接下来发布项目
稍做配置
就可以访问了。
要测试访问一下后台的数据哦!!!
前台:npm run build命令打成dist文件夹,上传到服务器。如果有文件上传还要配置
上传:
配置网站:
安装与配置nginx:
接下来配置:
server{listen 80;server_name localhost;charset utf-8;location / {root /www/wwwroot/dist;index index.html index.htm;try_files $uri $uri/ /index.html;error_page 405 =200 $request_uri;}location /api/ {proxy_pass http://localhost:9099/;}access_log /www/wwwlogs/access.log;}
尤其注意:
拉到最底部:
要把里面有影响的全部注释:
然后就可以用了。