jQueryServer.config.php.example 509 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Example of jQueryServer config file.
  4. *
  5. * To make it work just delete '.example' suffix.
  6. * @var array
  7. */
  8. $jQueryServerConfig = array();
  9. // Ajax host authorization
  10. // phpQuery::ajaxAllowHost('somehostname.com');
  11. // phpQuery::ajaxAllowURL('http://fullurl.com/witheverything?foo=bar');
  12. // Restrict access without referer
  13. // $jQueryServerConfig['refererMustMatch'] = true;
  14. // dot '.' means $_SERVER['HTTP_HOST']
  15. // $jQueryServerConfig['allowedRefererHosts'] = array('.', 'my-other-host.com');
  16. ?>