Skip to content

Instantly share code, notes, and snippets.

@emtudo
Created October 4, 2017 15:21
Show Gist options
  • Save emtudo/460192dfc61c3a86ea11036bfc1a2e57 to your computer and use it in GitHub Desktop.
Save emtudo/460192dfc61c3a86ea11036bfc1a2e57 to your computer and use it in GitHub Desktop.
minio s3
<?php
'minio' => [
'driver' => 's3',
'endpoint' => env('MINIO_ENDPOINT', 'https://127.0.0.1:9000'),
'use_path_style_endpoint' => true,
'key' => env('AWS_KEY'),
'secret' => env('AWS_SECRET'),
'region' => env('AWS_REGION'),
'bucket' => env('AWS_BUCKET'),
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment