Refactor image URLs to use MinIO storage across various views and controllers
All checks were successful
Deploy Production (crewsportswear.com) / deploy (push) Successful in 2m16s

This commit is contained in:
Frank John Begornia
2026-01-07 01:10:15 +08:00
parent 368ac50729
commit 8215ad8337
10 changed files with 27 additions and 31 deletions

View File

@@ -16,9 +16,9 @@ return [
// 'company_name' => env('COMPANY_NAME','Acme Inc'),
// 'company_email' => env('COMPANY_email','contact@acme.inc'),
'prod_private_server_ip' => env('https://crewsportswear.app', 'https://crewsportswear.app'),
'images_url' => env('https://crewsportswear.app:5955', 'https://crewsportswear.app:5955'),
'uploads' => env('https://crewsportswear.com/uploads/images/', 'https://crewsportswear.com/uploads/images/'), // local
'prod_private_server_ip' => env('PROD_PRIVATE', 'https://crewsportswear.app'),
'images_url' => env('IMAGES_URL', 'https://crewsportswear.app:5955'),
'uploads' => env('MINIO_URL', 'https://minio.crewsportswear.app') . '/' . env('MINIO_BUCKET', 'crewsportswear') . '/uploads/images/', // MinIO storage
];