12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- // This user agent will be used to access Google
- $config_user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.81 Safari/537.36";
-
- // e.g.: fr -> https://google.fr/
- $config_google_domain = "com";
- // Results will be in this language
- $config_google_language = "en";
- // Disable BitTorrent search
- $config_disable_bittorent_search = false;
- $config_bittorent_trackers = "&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce";
- /*
- youtube.com results will be replaced with the given invidious instance
- Get online invidious instances from here: https://docs.invidious.io/Invidious-Instances.md
-
- Set as null if you don't want to replace YouTube results
- */
- $config_replace_yt_with_invidious = "yewtu.be";
- /*
- To send requests trough a proxy uncomment CURLOPT_PROXY and CURLOPT_PROXYTYPE:
- CURLOPT_PROXYTYPE options:
- CURLPROXY_HTTP
- CURLPROXY_SOCKS4
- CURLPROXY_SOCKS4A
- CURLPROXY_SOCKS5
- CURLPROXY_SOCKS5_HOSTNAME
- As an example, for a TOR connection you would use these settings:
- CURLOPT_PROXY => "127.0.0.1:9050",
- CURLOPT_PROXYTYPE => CURLPROXY_SOCKS5,
- !!! ONLY CHANGE THE OTHER OPTIONS IF YOU KNOW WHAT YOU ARE DOING !!!
- */
- $config_curl_settings = array(
- // CURLOPT_PROXY => "ip:port",
- // CURLOPT_PROXYTYPE => CURLPROXY_HTTP,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_HEADER => false,
- CURLOPT_FOLLOWLOCATION => false,
- CURLOPT_ENCODING => "",
- CURLOPT_USERAGENT => $config_user_agent,
- CURLOPT_SSL_VERIFYHOST => 0,
- CURLOPT_VERBOSE => 1
- );
- ?>
|