Questions tagged as 'proxy'

1
answer

Use proxy in Python 3

I'm wanting to use a proxy connection in Python 3, something simple. I would like an alternative to the method used in Python 2 proxy = {"http":"http://178.22.148.122:3129"} urllib.urlopen("http://httpbin.org/ip", proxies = proxy).read()...
asked by 30.03.2017 / 23:45
1
answer

Passing variable from html form to nodejs

I am creating a webproxy with nodejs to be able to access "anonymously" to another site, so this is my server: const http = require("http"); const url = require("url"); const request = require("request"); const fs = require('fs') var server =...
asked by 23.08.2018 / 02:58
1
answer

Nodejs Proxy coming out with connection from another computer

I have a script in NodeJS that connects to an HTTPS API, but the server where the script is located is behind a proxy that does not allow HTTPS output. My query is: How can I make a script so that it uses the internet output of another co...
asked by 23.12.2016 / 14:02
0
answers

use proxy with phpmailer

I describe my situation. I have a system that sends emails via phpmailer but I would like to do it now through proxy. So my question is how to configure the proxy to function. $mail = new PHPMailer; $mail->IsSMTP();...
asked by 27.11.2018 / 03:47
1
answer

maven - proxy - Could not transfer artifact. (Corporate proxy)

Maven does not download the link libraries I'm trying to download the maven repository to create a Java application. If I do it from home it works because I do not have a proxy, if I do it from the company it does not download even if I con...
asked by 27.04.2018 / 01:39
1
answer

Configure proxy with NGINX?

I would like to configure NGINX so that the traffic that enters link goes to an address link . Is this implementation correct, or would it need more configuration parameters ?: location /ruta/ { proxy_pass http://nombre.equipo/car...
asked by 22.11.2018 / 10:35
1
answer

Consultation nodemailer nodejs

I'm trying to send a message on a network with an active proxy ip proxy: 192.168.2.1: 3128 I configure my options on nodemailer var smtpConfig = { host: 'smtp.gmail.com', port: 465, auth: { user: mailconfig.email,...
asked by 27.09.2016 / 00:25
0
answers

Configure proxy in ubuntu

What I'm trying to do is configure the ubuntu proxy to output applications that do not have default proxy settings. What I have done has been to go etc / enviroment and write: https_proxy=https://jogarcia:18mypassword*@myproxy:3128 and so f...
asked by 05.01.2019 / 20:24
1
answer

Consume WCP WebService with proxy and Anonymous Autehntication

I am working on a project that has two parts, a WCF application, which is hosted on IIS. This application is consumed by another application but desktop. The applications work perfectly, both in the development environment and in a production...
asked by 19.12.2018 / 22:57
0
answers

How to configure proxy in a C # application

I need to connect an application that I am developing in C # to the Internet through a proxy. For this I am using the class 'System.Net.WebProxy' of .NET in the following way: var webProxy = new WebProxy("proxy.uh.cu/estudiantes.pac", 80); web...
asked by 16.11.2018 / 17:17