Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 508 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 508 Bytes

Drupal Flysystem integration for OpenStack Swift

Example settings.php configuration

$schemes = []; // Including any other schemes
$schemes['swift'] = [
  'driver' => 'swift',
  'config' => [
    'authUrl' => '{authUrl}',
    'region'  => '{region}',
    'user'    => [
      'id'       => '{userId}',
      'password' => '{password}'
    ],
    'container' => '{containerName}',
    'scope'   => ['project' => ['id' => '{projectId}']], // Optional
  ],
];
$settings['flysystem'] = $schemes;