07 2021 档案

摘要:server { listen 443 ssl; server_name **.com; #证书绑定的网站域名 ssl_certificate **.pem; #证书公钥 ssl_certificate_key **.key; #证书私钥 ssl_session_timeout 5m; ssl_ci 阅读全文
posted @ 2021-07-22 13:43 litf 阅读(5690) 评论(0) 推荐(0)
摘要:<view class="tabTit box"> <view class="flex1{{!tab[index]?' active':''}}" wx:for="{{tabTxt}}" wx:key="type" data-index="{{index}}" bindtap="filterTab" 阅读全文
posted @ 2021-07-16 08:30 litf 阅读(100) 评论(0) 推荐(0)
摘要:1.首先将SpringBoot项目打包成JAR包,通过xFTP或者其他工具将JAR包上传到Linux上,然后执行如下命令启动项目: java -jar xxx.jar 该命令启动jar,一旦Xshell窗口关闭,JAR就停止运行了.如果想让项目在后台一直运行,通过如下命令启动JAR: nohup j 阅读全文
posted @ 2021-07-08 09:45 litf 阅读(706) 评论(0) 推荐(0)