Category: Uncategorized
-
Minio – Make private buckets accessible by anonymous users
In order to stop users from uploading to your buckets in minio you can set the bucket to private. However this means files are no longer publicly available via url e.g https://url.com:9000/bucket/files/image.png To fix this you can set a rule for anonymous user by Bucket > Anonymous > add Access rule > prefix =”/”, access…
-
How to create custom file system in Laravel
In order to create a custom filesystem in Laravel You need to For this example we will create a new custom filestore adapter. This adapter was to be created in my project to communicate via RestAPI with my custom filestorage server on my Virtual Private Server. Let’s Go! Short info: peskom_filestore, PeskomFilestoreAdapter are arbitary names,…