安装宝塔: 购买云服务器,选择带宝塔面板的实例
安装环境:登录宝塔安装Nginx、Redis
建nginx站点:网站->添加站点
生成的站点,点击设置
nginx设置:域名管理
nginx设置:网站目录
nginx设置:配置文件
server
{
listen 80;
server_name deepcube.top www.deepcube.top;
index index.php index.html index.htm default.php default.htm default.html;
root /mnt/webapp/shop/dist;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
#SSL-END
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#PHP-INFO-START PHP引用配置,可以注释或修改
include enable-php-00.conf;
#PHP-INFO-END
#REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
include /www/server/panel/vhost/rewrite/deepcube.top.conf;
#REWRITE-END
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}
location / {
try_files $uri /index.html;
}
location /api {
proxy_pass http://localhost:8001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /auth {
proxy_pass http://localhost:8001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log off;
access_log /dev/null;
}
location ~ .*\.(js|css)?$
{
expires 12h;
error_log off;
access_log /dev/null;
}
access_log /www/wwwlogs/deepcube.top.log;
error_log /www/wwwlogs/deepcube.top.error.log;
}
mysql数据库配置
文件上传至步骤6指定的目录
启动后端项目
cd /mnt/webapp/shop
./nohup java -jar demo.jar > ./demo.log 2>&1 &
demo换成你的包名
重启nginx 大功告成!!