-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathconfiguration.php
More file actions
24 lines (19 loc) · 760 Bytes
/
Copy pathconfiguration.php
File metadata and controls
24 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// Global:
define('SERVER_NAME', 'my instance');
// Web-scraping endpoints:
define('GOOGLE_ABUSE_EXEMPTION', '');
define('MULTIPLE_IDS_ENABLED', True);
define('MULTIPLE_IDS_MAXIMUM', 50);
define('HTTPS_PROXY_ADDRESS', '');
define('HTTPS_PROXY_PORT', 80);
define('HTTPS_PROXY_USERNAME', '');
define('HTTPS_PROXY_PASSWORD', '');
// No-key endpoint:
define('KEYS_FILE', 'ytPrivate/keys.txt');
// Both following entries can be generated with `tr -dc A-Za-z0-9 </dev/urandom | head -c 32 ; echo`.
define('RESTRICT_USAGE_TO_KEY', '');
// If not defined, a random value will be used to prevent denial-of-service.
define('ADD_KEY_FORCE_SECRET', '');
define('ADD_KEY_TO_INSTANCES', []);
?>