Extension:WindowsAzureStorage
WindowsAzureStorage Utgivningsstatus: stabil |
|
---|---|
Genomförande | Fillager |
Beskrivning | Allows MediaWiki to use Windows Azure as the file backend |
Författare | Thai Phan, Markus Glaser |
Senaste versionen | 1.2.0 |
MediaWiki | >= 1.34.0 |
Licenser | GNU General Public License 2.0 eller senare |
Ladda ner | |
Kvartalsnedladdningar | 8 (Ranked 123rd) |
Översätt tillägget WindowsAzureStorage om det finns tillgängligt på translatewiki.net | |
The WindowsAzureStorage extension enables MediaWiki to store uploaded files to the Windows Azure Storage service.
Installation
- Ladda ner och placera filen/filerna i en katalog som heter
WindowsAzureStorage
i dinextensions/
-mapp.
Utvecklare och personer som bidrar med kod borde istället installera tillägget från Git, med:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WindowsAzureStorage - Lägg till följande kod längst ner i din LocalSettings.php -fil:
wfLoadExtension( 'WindowsAzureStorage' );
- Configure as required.
- Klart – Ta dig till Special:Version på din wiki för att bekräfta att tillägget har installerats ordentligt.
Konfigurering
Add the following to the end of the "LocalSettings.php" file to start using your Windows Azure Storage account as the file backend for your wiki. You will need to change your_azure_storage_account and your_azure_storage_account_key to the relevant values.
$wgFileBackends[] = [
'name' => 'localAzure',
'class' => 'WindowsAzureFileBackend',
'lockManager' => 'nullLockManager',
'azureAccount' => 'your_azure_storage_account',
'azureKey' => 'your_azure_storage_account_key'
];
$wgLocalFileRepo = [
'class' => 'LocalRepo',
'name' => 'local',
'backend' => 'localAzure',
'scriptDirUrl' => $wgScriptPath,
'scriptExtension' => $wgScriptExtension,
'url' => $wgScriptPath . '/img_auth.php',
'hashLevels' => 0,
'deletedHashLevels' => 0,
'zones' => array(
'public' => [ 'container' => 'public' ],
'thumb' => [ 'container' => 'thumb' ],
'temp' => [ 'container' => 'temp' ],
'deleted' => [ 'container' => 'deleted' ]
]
];
$wgImgAuthPublicTest = false;