https://github.com/macopedia/typo3-azurestorage
TYPO3 FAL driver extension for Microsoft Azure Blob Storage
https://github.com/macopedia/typo3-azurestorage
azure-storage storage typo3 typo3-extension typo3-fal
Last synced: 11 months ago
JSON representation
TYPO3 FAL driver extension for Microsoft Azure Blob Storage
- Host: GitHub
- URL: https://github.com/macopedia/typo3-azurestorage
- Owner: macopedia
- License: mit
- Created: 2016-05-23T10:52:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T20:59:37.000Z (about 2 years ago)
- Last Synced: 2024-10-11T23:50:11.913Z (over 1 year ago)
- Topics: azure-storage, storage, typo3, typo3-extension, typo3-fal
- Language: PHP
- Size: 80.1 KB
- Stars: 4
- Watchers: 4
- Forks: 5
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TYPO3 extension "azurestorage"
Adds Microsoft Azure Blob Storage support to TYPO3 file abstraction layer (FAL).
## Installation
##### Composer
```php
composer require b3n/azurestorage
```
## Configuration
After you've installed the extension, you need to enable it either via console
or in the backend. After that, add a new file storage and enter your Azure Blob
Storage credentials.
##### Add a new File Storage

In the next step, enter all required credentials which you can find in the Azure
Portal under Storage accounts / Settings / Access keys. Blob container name is the
name you gave your container, you can also find it under Overview.
:warning: Make sure that the access policy of you container is set to **Blob** or **Container**!

I would like to say thank you to [Susanne Moog](https://github.com/psychomieze)
for her previous work on her own extension to implement the Azure Blob Storage.
Her work was a good point to start.