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'),
],
'notice' => env('APP_NOTICE', '')
];

View File

@@ -30,29 +30,19 @@ return [
'disks' => [
// 'local' => [
// 'driver' => 'local',
// 'root' => storage_path('app'),
// 'throw' => false,
// ],
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
'throw' => false,
],
'media' => [
'driver' => 'local',
'root' => storage_path('app/media'),
// 'url' => env('APP_MEDIA_URL'),
'url' => env('APP_URL').'/media/download',
'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' => [
// 'driver' => 's3',
// 'key' => env('AWS_ACCESS_KEY_ID'),
@@ -79,7 +69,7 @@ return [
*/
'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',
],
],
/*