Files
laralog/config/media.php
T

39 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| 附件存储(S3 兼容:Cloudflare R2 / 腾讯 COS / 阿里 OSS
|--------------------------------------------------------------------------
|
| S3_ENDPOINT 示例:
| R2: https://<ACCOUNT_ID>.r2.cloudflarestorage.com
| COS: https://cos.<region>.myqcloud.com
| OSS: https://oss-<region>.aliyuncs.com
|--------------------------------------------------------------------------
*/
'disk' => env('UPLOAD_DISK', 'uploads'),
'key' => env('S3_ACCESS_KEY'),
'secret' => env('S3_SECRET_KEY'),
'region' => env('S3_REGION', 'auto'),
'bucket' => env('S3_BUCKET'),
'endpoint' => env('S3_ENDPOINT'),
'use_path_style_endpoint' => env('S3_USE_PATH_STYLE_ENDPOINT', false),
'url' => env('S3_URL'),
'visibility' => env('S3_VISIBILITY', 'public'),
/*
|--------------------------------------------------------------------------
| 大文件直接上传阈值(超过则走 MultipartUpload
|--------------------------------------------------------------------------
*/
'multipart_threshold' => env('S3_MULTIPART_THRESHOLD', 50 * 1024 * 1024),
];