Manual:$wgCopyUploadsDomains
From MediaWiki.org
Uploads: $wgCopyUploadsDomains | |
---|---|
Limit $wgAllowCopyUploads to a specific whitelist |
|
Introduced in version: | 1.20.0 (git #8c6c29b3) |
Removed in version: | still in use |
Allowed values: | Array |
Default value: | empty |
Other settings: Alphabetical | By Function
Details[edit | edit source]
The domains in the whitelist can include wildcard characters (*) in place of any of the domain levels, e.g. '*.flickr.com' or 'upload.*.gov.uk'.
If this array is empty (per the default), all domains are accepted.
Example usage[edit | edit source]
This example setup will allow all autoconfirmed users to upload by URL, via Special:Upload or the API, from Flickr and some UK Government websites only. Add to the bottom of your LocalSettings.php:
$wgGroupPermissions['autoconfirmed']['upload_by_url'] = true; $wgAllowCopyUploads = true; $wgCopyUploadsFromSpecialUpload = true; $wgCopyUploadsDomains = array( '*.flickr.com', 'upload.*.gov.uk' );