Manual:$wgCrossSiteAJAXdomains/pl
API: $wgCrossSiteAJAXdomains | |
---|---|
Domains that may make cross-site Ajax requests to the MediaWiki API. |
|
Wprowadzono w wersji: | 1.16.0 (r54127) |
Usunięto w wersji: | nadal w użyciu |
Dozwolone wartości: | (array) |
Domyślna wartość: | [] |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
Allows Ajax requests from certain domains to make cross-site requests to a wiki's API (see Manual:CORS for example usage). This uses the Access-Control-Allow-Origin HTTP header. Note that some older browsers don't support this. This only affects requests to the API. Other entry points (index.php) are not affected.
The value must be a list of allowed domain names, which can include shell-style wildcards (?
to match any character, *
to match any number (including zero) of characters).
An empty array means no external access is allowed.
Some examples:
Allow any domain to access the API via Ajax:
$wgCrossSiteAJAXdomains = array( '*' );
Allow two specific domains:
$wgCrossSiteAJAXdomains = array( 'en.wikipedia.org', 'en.wikibooks.org' );
Allow all subdomains of a domain (including "deep" subdomains such as en.m.wikipedia.org
):
$wgCrossSiteAJAXdomains = array( '*.wikipedia.org' );
See gerrit:9624 for a usage example.