update configuration

This commit is contained in:
2024-04-22 19:53:10 +10:00
parent 32f7770e75
commit 363d8cfcdb
3 changed files with 14 additions and 16 deletions

View File

@@ -123,4 +123,5 @@ return [
'store' => env('APP_MAINTENANCE_STORE', 'database'), 'store' => env('APP_MAINTENANCE_STORE', 'database'),
], ],
'notice' => env('APP_NOTICE', '')
]; ];

View File

@@ -30,29 +30,19 @@ return [
'disks' => [ 'disks' => [
// 'local' => [ 'local' => [
// 'driver' => 'local', 'driver' => 'local',
// 'root' => storage_path('app'), 'root' => storage_path('app'),
// 'throw' => false, 'throw' => false,
// ], ],
'media' => [ 'media' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('app/media'), 'root' => storage_path('app/media'),
// 'url' => env('APP_MEDIA_URL'),
'url' => env('APP_URL').'/media/download', 'url' => env('APP_URL').'/media/download',
'throw' => false, 'throw' => false,
], ],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
// 'url' => env('APP_MEDIA_URL'),
// 'url' => env('APP_URL').'/media',
// 'visibility' => 'public',
'throw' => false,
],
// 's3' => [ // 's3' => [
// 'driver' => 's3', // 'driver' => 's3',
// 'key' => env('AWS_ACCESS_KEY_ID'), // 'key' => env('AWS_ACCESS_KEY_ID'),
@@ -79,7 +69,7 @@ return [
*/ */
'links' => [ 'links' => [
public_path('media') => storage_path('app/public'), // public_path('media') => storage_path('app/media'),
], ],
]; ];

View File

@@ -82,6 +82,13 @@ return [
], ],
], ],
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
], ],
/* /*