Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation behind HTTP proxy (inc. authentication) #41

Closed
taviroquai opened this issue Aug 27, 2014 · 3 comments
Closed

Installation behind HTTP proxy (inc. authentication) #41

taviroquai opened this issue Aug 27, 2014 · 3 comments

Comments

@taviroquai
Copy link

Basically, this issue is to request changes to allow installation behind an HTTP proxy (inc. authentication).

Quick fix was to add PROXY params to cURL (method prepareServerRequest).

Example:

    // Add proxy params
    curl_setopt($curl, CURLOPT_PROXYTYPE, 'HTTP');
    curl_setopt($curl, CURLOPT_PROXY, 'proxy:8080');
    curl_setopt($curl, CURLOPT_PROXYUSERPWD, 'user:password');
@Shuunen
Copy link

Shuunen commented Jan 29, 2015

thx @taviroquai , works nice

@daftspunk
Copy link
Member

Relates to #27

This was referenced May 16, 2015
@daftspunk
Copy link
Member

If this is still an issue, please log it in the main October repo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants