Code Monkey home page Code Monkey logo

laravel-storage-rados-s3's Introduction

#Laravel Rados Gateway S3 storage provider


This is a simple service provider that extends league/flysystem-aws-s3-v3 and allows the base_url to be set.

Primary use is for S3 compatible services like the Ceph Rados Gateway


Installation

composer require imrantune/laravel-storage-rados-s3

Package should be auto discovered by Laravel 6x

OR

Register the service provider in app.php

'providers' => [
    // ...
    Imrantune\Ceph\CephStorageServiceProvider::class,
]

Add a new disk to your config/filesystems.php config:

'ceph' => [
           'base_url' => env('CEPH_BASE_URL', 'https://s3.tune.pk'),
           'driver' => 'ceph',
           'key' => env('CEPH_ACCESS_KEY', 'xxxxxxxxxx'),
           'credentials' => [
               'key' => env('CEPH_ACCESS_KEY', 'xxxxxxxxxx'),
               'secret' => env('CEPH_SECRET_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxx'),
           ],
           'region' => '',
           'bucket' => env('CEPH_BUCKET', 's3-bucket'),
           'version' => env('CEPH_VERSION', 'latest'),
           'ACL' => env('CEPH_ACL', 'private'), //private,'public-read',
           'visibility' => env('CEPH_VISIBILITY', 'private')
       ],

Put the following lines in your .env file and fill out with your connection information

CEPH_BASE_URL=
CEPH_ACCESS_KEY=
CEPH_SECRET_KEY=
CEPH_BUCKET=
CEPH_VERSION=
CEPH_ACL=
CEPH_VISIBILITY=

Usage

Once installed this can be used as any standard Storage driver for Laravel 6.x https://laravel.com/docs/6.x/filesystem

laravel-storage-rados-s3's People

Contributors

exula avatar imrantune avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.