imarc / craft-volume-permissions
Set the permissions for Craft 3 local volumes
Installs: 5 443
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
- craftcms/cms: >=3.0.0
This package is auto-updated.
Last update: 2024-10-22 02:58:49 UTC
README
This is a Craft 3 module which allows settings the default permissions of all local volumes with environment variables. The following environment variables are available:
VOLUME_FILE_PUBLIC_PERMISSION=664
VOLUME_FILE_PRIVATE_PERMISSION=660
VOLUME_DIR_PUBLIC_PERMISSION=775
VOLUME_DIR_PRIVATE_PERMISSION=770
Being able to set the proper non-standard file permissions can be critical in certain environments. A specific example is deploying to a filesystem using ACLs where it is essential that directories and files are group writable.
Install
Install in your Craft 3 project using composer:
composer require imarc/craft-volume-permissions
Then enable the module within your config/app.php
file:
<?php
return [
'modules' => [
'volume-permissions' => \Imarc\Craft\Modules\VolumePermissions::class,
],
'bootstrap' => [
'volume-permissions',
],
];
Then use the environment variables to configure the permissions.
Dirty Hack?
This module is a bit of a hack as it uses Reflection to alter Flysystem's hardcoded Local adapter defaults. Ideally a better solution is found in the future.
License
The MIT License (MIT)
Copyright
Copyright (c) 2019 iMarc LLC