Questions tagged [http-proxy]

An HTTP Proxy is a server that receives requests from your web browser and then makes the request to the Internet on your behalf. It then returns the results to your browser.

A proxy server is a server (a computer system or an application) that acts as an intermediary for requests from clients seeking resources from other servers.

A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource available from a different server and the proxy server evaluates the request as a way to simplify and control its complexity.

Today, most proxies are web proxies, facilitating access to content on the World Wide Web.

1502 questions
11
votes
1 answer

angular ng serve with proxy config doesn't set cookies from laravel API

I have a project that uses angular as the front end and has a laravel API for the backend. I want to make use of ng serve's proxy live reloading: ng serve --proxy-config proxy.config.js Here is the proxy.config.js file: const PROXY_CONFIG = { …
jasonaburton
  • 2,941
  • 7
  • 34
  • 48
11
votes
1 answer

How to use .NET WebSocket Client with NTLM proxies?

My goal is to use a WebSocket .Net client implementation (i.e. not a browser) to connect to a WebSocket over a corporate proxy that requires NTLM authentication. So far, all the solutions (e.g. websocket-sharp-with-proxy, websocket4net) come up…
RichardTheKiwi
  • 105,798
  • 26
  • 196
  • 262
11
votes
1 answer

Node http-proxy-middleware not working with local servers as targert

I have a node server and I am proxying my api requests using http-proxy-middleware, similar to what happens in this post. When I proxy to real production server everything works just fine, but when I point the proxy to a local server it just doesn't…
Yaniv Efraim
  • 6,633
  • 7
  • 53
  • 96
11
votes
1 answer

how to use Socks4/5 Proxy Handlers in Netty Client (4.1)

I need to configure socks proxy in Netty client (to request different sites via socks4 or 5 proxies). Tried a lot of proxies from free socks lists (like www.socks-proxy.net, http://sockslist.net/ etc) but with no luck: @Test public void testProxy()…
yetanothercoder
  • 1,689
  • 4
  • 21
  • 43
11
votes
1 answer

Setting Scrapy proxy middleware to rotate on each request

This question necessarily comes in two forms, because I don't know the better route to a solution. A site I'm crawling kicks me to a redirected "User Blocked" page often, but the frequency (by requests/time) seems random, and they appear to have a…
Xodarap777
  • 1,358
  • 4
  • 19
  • 42
11
votes
1 answer

how to grab the uploaded file from charles network utility

I'l like to save and extract the file part from a multipart http upload recorded by Charles network utility on the mac. Is there a way to do this? For instance, I can see the jpeg files contents in the request text, but if I try to copy and paste…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
11
votes
4 answers

How to use node-http-proxy for HTTP to HTTPS routing?

Here's the module version that I'm using: $ npm list -g | grep proxy ├─┬ http-proxy@0.10.0 A webservice calls into my machine and my task is to proxy the request to a different url and host with an additional query parameter based on the contents…
pulkitsinghal
  • 3,855
  • 13
  • 45
  • 84
10
votes
2 answers

How to configure the curl package in R with default web proxy settings?

I'm using R in a commercial environment where external connectivity all goes via a web proxy, so we need to specify the proxy server address and ensure we connect to it with Windows authentication. I already have code that will configure the RCurl…
djb72
  • 101
  • 1
  • 4
10
votes
2 answers

Use haproxy as a reverse proxy with an application behind Internet proxy

I need to integrate several web applications on-premise and off-site under a common internally hosted URL. The on-premise applications are in the same data center as the haproxy, but the off-site applications can only be reached via a http proxy…
Marged
  • 10,577
  • 10
  • 57
  • 99
10
votes
2 answers

nginx proxy_pass over https_proxy

I am trying to set up nginx with this config. To access backend.mygreat.server.com I have to go through my corporate proxy, which is myproxy.server.com:80. Hence, I have added this in /etc/environment https_proxy=myproxy.server.com:80 Yet, nginx is…
Arun Avanathan
  • 982
  • 4
  • 11
  • 26
10
votes
2 answers

PIP how escape character # in password?

want to continue question How to get pip to work behind a proxy server I have Windows Server and Python 3.5 (64). In password my user include #. I try to use some solve: "C:\Program Files\Python35\scripts\pip.exe" install --proxy…
Nikolay Baranenko
  • 1,582
  • 6
  • 35
  • 60
10
votes
3 answers

Squid refuses all websites when creating proxy server

so I'm trying to create a proxy server for my crawler to use, and I'm unsure about why I'm getting denied from even myself. When I go to any website in a browser, on the computer that I've installed Squid and everything on, it's giving me the…
Matt
  • 139
  • 1
  • 1
  • 10
10
votes
2 answers

AWS api gateway - http proxy should take status code from origin

I am currently trying to setup AWS Api Gateway, to proxy to another api, that has fully functional methods, response content, status codes etc. This is fairly simple to setup, but I have noticed that the Api Gateway always returns 200 OK no matter…
Martin Hansen
  • 2,033
  • 1
  • 18
  • 34
10
votes
1 answer

Reverse proxy header should be provided

I use reverse proxy from the following module in node app-: https://github.com/nodejitsu/node-http-proxy My question is whether I need to modify the header for state of reverse proxy to work like…
user1578363
10
votes
3 answers

How to transfer a file using a proxy with JSch library

I want to transfer files to a remote location and I am bound to use a proxy server for that. I was able to connect to the FTP location via following command : sftp -o "ProxyCommand /usr/bin/nc -X connect -x : %h %p"…
Amaresh
  • 331
  • 2
  • 5
  • 14