Reputation: 60
Hi Reamlente esoty tired of trying the proxy configuration for nodejs.To download packages this is my configuration
https-proxy https://cigb\johan:Yoannahermana87:proxy.cigb.edu.cu:8080/ http proxy https://cigb\johan:Yoannahermana87:proxy.cigb.edu.cu:8080/
And I still leave the same error and I do not know what I'm going to do for weeks on this, please help mee!!!!!
Upvotes: 1
Views: 250
Reputation: 2067
Is it possible that you typoed the @
sign before the host in your proxy config. Usually you name a proxy like this:
<scheme>://<username>:<password>@<domain>:<port>
Which in my opinion resolves to the following in your case:
https://cigb%5Cjohan:[email protected]:8080/
Although I do not know what the \
means in your username, if it is supposed to be there url encode it to be safe with %5C
.
To sum up the data you inserted:
Protocol/Scheme: https
Username: cigb\johan
Passwort: Yoannahermana87
Proxy-domain: proxy.cigb.edu.cu
Port: 8080
Upvotes: 2