兰空图床 v2 常见问题及其解决方法

反代/套CDN后无法加载静态文件(css, js)(以及安装时点击无反应)

编辑 .env 文件,追加一行:

ASSET_URL=https://你的域名

但是接口域名还是 http 的,所以在这个文件的 boot 方法里,

lsky-pro/app/Providers/AppServiceProvider.php

public function boot() 
{ 
    // 是否需要生成 env 文件 
    if (! file_exists(base_path('.env'))) { 
        file_put_contents(base_path('.env'), file_get_contents(base_path('.env.example'))); 
        // 生成 key 
        Artisan::call('key:generate'); 
    } 
 
    // 如果已经安装程序,初始化一些配置 
    if (file_exists(base_path('installed.lock'))) { 
        // 覆盖默认配置 
        Config::set('app.name', Utils::config(ConfigKey::AppName)); 
        Config::set('mail', array_merge(\config('mail'), Utils::config(ConfigKey::Mail)->toArray())); 
 
        View::composer('*', function (\Illuminate\View\View $view) { 
            /** @var Group $group */ 
            $group = Auth::check() ? Auth::user()->group : Group::query()->where('is_guest', true)->first(); 
            $view->with('_group', $group); 
        }); 
    } 
} 

第 32 行下面追加一行:

\Illuminate\Support\Facades\URL::forceScheme('https');

 

© 版权声明
THE END
請多多支持
点赞15
评论 抢沙发

    暂无评论内容