Handbuch:$wgImgAuthUrlPathMap
Appearance
From mediawiki.org
This page is a translated version of the page Manual:$wgImgAuthUrlPathMap and the translation is 30% complete.
| Dateien und Datei-Uploads: $wgImgAuthUrlPathMap | |
|---|---|
Map of relative URL directories to match to internal mwstore:// base storage paths. |
|
| Eingeführt in Version: | 1.23.0 (Gerrit change 95304; git #0eb52399) |
| Entfernt in Version: | Weiterhin vorhanden |
| Erlaubte Werte: | Nicht angegeben |
| Standardwert: | [] |
| Andere Einstellungen: Alphabetisch | Nach Funktion | |
Details
For img_auth.php requests, everything after img_auth.php/ is checked to see if starts with any of the prefixes defined here.
The prefixes should not overlap.
The prefix that matches has a corresponding storage path, which the rest of the URL is assumed to be relative to.
The file at that path (or a 404) is send to the client.
Beispiel:
$wgImgAuthUrlPathMap['/timeline/'] = 'mwstore://local-fs/timeline-render/';
The above maps .../img_auth.php/timeline/X to mwstore://local-fs/timeline-render/.
The name local-fs should correspond by name to an entry in $wgFileBackends .