Last active
July 18, 2023 16:49
-
-
Save ebuildy/381f116e9cd18216a69188ce0230708d to your computer and use it in GitHub Desktop.
Revisions
-
ebuildy revised this gist
Nov 23, 2016 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,10 @@ 'request_fulluri' => true, 'verify_peer' => false, 'verify_peer_name' => false, ), "ssl"=>array( "verify_peer"=>false, "verify_peer_name"=>false ) ); -
ebuildy created this gist
Nov 23, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ echo "auto_prepend_file=/opt/www/proxy.php" >> /etc/php5/cli/php.ini This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ <?php $proxy = getenv('http_proxy'); if (!empty($proxy)) { $proxy = str_replace('http://', 'tcp://', $proxy); echo "Found a proxy " . $proxy . PHP_EOL; $context = array( 'http' => array( 'proxy' => $proxy, 'request_fulluri' => true, 'verify_peer' => false, 'verify_peer_name' => false, ) ); stream_context_set_default($context); } else { echo "Proxy not found" . PHP_EOL; }