You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
509 B
18 lines
509 B
<?php
|
|
/**
|
|
* Example of jQueryServer config file.
|
|
*
|
|
* To make it work just delete '.example' suffix.
|
|
* @var array
|
|
*/
|
|
$jQueryServerConfig = array();
|
|
|
|
// Ajax host authorization
|
|
// phpQuery::ajaxAllowHost('somehostname.com');
|
|
// phpQuery::ajaxAllowURL('http://fullurl.com/witheverything?foo=bar');
|
|
|
|
// Restrict access without referer
|
|
// $jQueryServerConfig['refererMustMatch'] = true;
|
|
// dot '.' means $_SERVER['HTTP_HOST']
|
|
// $jQueryServerConfig['allowedRefererHosts'] = array('.', 'my-other-host.com');
|
|
?>
|