Administrator
2025-05-20 dafe408caba21711a7286cb49bd845a0417fa04d
fix(resource): 更新资源链接为 HTTPS

- 将 application-prod.yml 中的静态资源 URL 从 HTTP 改为 HTTPS
- 修改 XcxPayServiceImpl 中的图片上传路径 URL 为 HTTPS
2 files modified
4 ■■■■ changed files
src/main/java/cc/mrbird/febs/pay/service/impl/XcxPayServiceImpl.java 2 ●●● patch | view | raw | blame | history
src/main/resources/application-prod.yml 2 ●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/pay/service/impl/XcxPayServiceImpl.java
@@ -441,7 +441,7 @@
    //图片上传路径
    public  static  final String IMG_UPLOAD_PATH="/home/javaweb/webresource/upload/wxcode";
    public  String generateAcode(String scene,String path,String imgName,String width, Integer type){
        String urlPrefix="http://hcres.csxuncong.com/wxcode";
        String urlPrefix="https://hcres.csxuncong.com/wxcode";
        String imgPath=IMG_UPLOAD_PATH+imgName;
        if(!FileUtil.exist(imgPath)){
src/main/resources/application-prod.yml
@@ -76,7 +76,7 @@
static:
  resource:
    url: http://hcres.csxuncong.com/
    url: https://hcres.csxuncong.com/
    path: /home/javaweb/webresource/upload/
system: