http-proxy Questions

3

Solved

In my single page application I'm developing I'm using Vite and in my vite.config.ts file I have the following proxy: proxy: { '/v1': { target: 'https://127.0.0.1:8080', changeOrigin: true, sec...
Transpose asked 19/3, 2022 at 1:1

4

Solved

Configure Proxy Route Planner on Feign I need to know how to make requests being behind a proxy server using the spring boot REST client. I can do this configuration using apache commons for REST ...
Shu asked 23/4, 2018 at 13:50

4

Solved

I'm trying to install a package on a old Fedora 20 virtual machine. yum install<the_package_name> results in a failure with an HTTP 403 error: http://download.fedoraproject.org/<...(trunca...
Clumsy asked 9/9, 2015 at 14:59

2

hello guys i am installing squid as HTTP proxy for scraping urls from google with a tool i have configured every thing but when i am connecting to squid it is giving tcp 403 error i have ubuntu14.0...
Rosa asked 30/3, 2016 at 21:11

4

I have tried lots of things online but nothing is working so far. First try (src/pages/api/proxy/[...slug].js): import { createProxyMiddleware } from 'http-proxy-middleware'; // Create proxy insta...
Chancellery asked 30/3, 2021 at 21:42

2

Solved

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...
Lapful asked 20/4, 2016 at 13:36

2

I have a Node.JS server running at http://localhost:8080 with 2 routes: "/": Serves /public/index.html. "/rest": Returns { ok: true }. This server is also running a Websocket ...
Depurative asked 13/9, 2020 at 16:55

6

Solved

I was trying to follow the docs and created vite.config.js like this: const config = { outDir: '../wwwroot/', proxy: { // string shorthand '/foo': 'http://localhost:4567', // with options '/a...
Hunkydory asked 4/11, 2020 at 9:19

2

Solved

I'm using the websockets module, but it doesn't support connecting though my corporate proxy for a client connection: >>> import asyncio, websockets >>> async def connect(uri): ....
Session asked 10/11, 2017 at 14:53

5

Solved

How to delete Kafka topic using Kafka REST Proxy? I tried the following command, but it returns the error message: curl -X DELETE XXX.XX.XXX.XX:9092/topics/test_topic If it's impossible, then ho...
Lucilius asked 4/1, 2017 at 11:8

1

I am using a proxy to request API related to payment in the backend. API proxy requests are made using the HTTP protocol. User-sensitive data is delivered when API requests are made. In the case of...
Vevine asked 13/11, 2023 at 8:50

2

we already have a release version in playstore and its working just fine. But suddenly now when we try to build and run the code again since we want to add new functionality. It would no longer co...
Josephson asked 17/1, 2020 at 13:25

8

Solved

I had set proxy settings in cmd when I was in a proxy network as follows: set http_proxy=http://username:pass@hostname:port set https_proxy=https://username:pass@hostname:port Now that I am on a...
Racism asked 22/5, 2015 at 21:28

3

Solved

I'm new to Ubuntu, but I've got a job to install Wiki.JS with docker. It works, the server is running, but for some reason it cannot reach GraphQL API. I've ran into the following problem: Serv...
Nickelsen asked 15/6, 2020 at 7:15

3

I would like to intercept all http requests going out from my web page and add a parameter to the request body. My page includes forms - I also want to capture form submits. I have tried using Jque...
Presume asked 5/5, 2017 at 21:9

3

I'm trying to make a apache server a gateway for my node server. My apache will serve the static pages and the node will act as rest api server. Both the node and the apache sits on the same server...
Viscount asked 18/1, 2016 at 22:24

3

I'm trying to use JDK 11 HttpClient to make requests through a corporate proxy which requires authentication by login and password. According to JDK's intro, I'm building an instance of client by m...
Fillender asked 16/11, 2018 at 7:52

4

Solved

I'm trying to do some scraping, but I get blocked every 4 requests. I have tried to change proxies but the error is the same. What should I do to change it properly? Here is some code where I try ...
Shaefer asked 26/4, 2019 at 17:7

3

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 installe...
Preachy asked 8/11, 2015 at 4:35

3

Solved

I'm using one server to host multiple Node.js web apps, which are distributed across multiple domains. My current practice is to run an Express server for each app on a different port, and to run a...
Wheatley asked 17/2, 2012 at 17:37

4

Solved

Here's the module version that I'm using: $ npm list -g | grep proxy ├─┬ [email protected] A webservice calls into my machine and my task is to proxy the request to a different url and host...
Nobby asked 4/4, 2013 at 1:22

1

Solved

In my particular network environment the Google chrome executable can access via an authenticated outgoing proxy server external web sites. Other executables however (when pointing to that outgoing...

0

I'm using NextJS to build our Frontend. The NextJS API just provides basic checks and then redirects to proper micro-services. But I'm struggling to find the proper approach. Since we are using Nex...
Nabalas asked 18/2, 2022 at 12:59

12

Solved

Just a short, simple one about the excellent Requests module for Python. I can't seem to find in the documentation what the variable 'proxies' should contain. When I send it a dict with a standard ...
Carbonate asked 27/11, 2011 at 17:50

3

Solved

I am trying to implement the simplest example: var http = require('http'), var httpProxy = require('http-proxy'); httpProxy.createServer(function (req, res, proxy) { // // I would add logging h...
Underexposure asked 11/6, 2012 at 18:11

© 2022 - 2024 — McMap. All rights reserved.