Giter Club home page Giter Club logo

qiniu-laravel-storage's Issues

Laravel后台展示的资源地址总是http开头,无法改为https

环境信息

  • PHP:8.3
  • Laravel:10

详细描述

数据库存储的文件路径是 file/20240119/url-R3BA253rA1nL.jpeg 但是DcatAdmin渲染出来后的页面。给的文件展示地址是

http://img.xxxx.com/file/20240119/url-R3BA253rA1nL.jpeg

所以我就修改filesystems.php

// 七牛云 OSS 文件上传配置
        'qiniu' => [
            'driver'  => 'qiniu',
            'domains' => [
                'default'   => ''.env('QINIU_DOMAIN'), //你的七牛域名
                'https'     => env('QINIU_DOMAIN'), //你的HTTPS域名
                'custom'    => env('QINIU_DOMAIN'), //你的自定义域名
             ],
            'access_key' => env('QINIU_ACCESS_KEY'),  //AccessKey
            'secret_key' => env('QINIU_SECRET_KEY'),  //SecretKey
            'bucket'     => env('QINIU_BUCKET'),      //Bucket名字
            'notify_url' => env('QINIU_NOTICE_URL'),  //持久化处理回调地址
            'url'        => env('QINIU_ROOT_URL'),    // 填写文件访问根url
        ],

其中 QINIU_DOMAIN=img.xxxx.com

修改说明

如果我给 domains 中拼接了 https:// 最终展示出来后就变成了

http://https://img.xxxx.com/file/20240119/url-R3BA253rA1nL.jpeg

所以存在问题。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.