1,514 questions
Best practices
0 votes
4 replies
83 views
Python: two Flask projects under the same HTTP Port
I have 2 separate projects running on the same Linux server. Both projects based on Flask. Due to infrastructure restrictions I'm able to use only one HTTP Port on the server. I would like to route ...
0 votes
0 answers
40 views
React Native + Cloudflare Workers: requests freeze after 1–2 mind idle
Summary: React Native + Cloudflare Workers: requests to *.workers.dev freeze after 1–2 minutes idle, while direct origin requests still work I’m seeing a very strange issue with a mobile app that ...
0 votes
0 answers
20 views
CreateLessonPlan API fails with "Stream was already consumed" during proxy forwarding
When testing the CreateLessonPlan endpoint in my local Azure Function App, the request consistently fails while being proxied from the host to the worker. All other APIs are working correctly — this ...
3 votes
2 answers
162 views
How to make system proxy settings apply to HttpClient.GetAsync() without restarting Windows?
We use the following function to test internet connectivity every 5 seconds. But in some part of the world, this function always returns false. Now, the problem is we can set a proxy server in Windows ...
1 vote
0 answers
133 views
C# (.NET 4.8) HTTP/s Proxy Checking Accuracy
Over the past few days, I’ve been developing a project in C# (.NET 4.8) that scrapes and validates hundreds of HTTP/S proxies. I’ve experimented with multiple approaches to confirm whether a proxy is ...
0 votes
0 answers
99 views
How to configure HTTP forward proxy (instead of CONNECT tunnel)?
I'm trying to configure an HTTP proxy (without CONNECT tunnelling support) for my Spring WebFlux WebClients (based on Netty HttpClient) but without success (403 HTTP status code). As explained in the ...
0 votes
0 answers
111 views
Vite http-proxy remove authorization header
I'm using http-proxy as it comes with vite and I want to mock a real proxy, which validates a JWT token and uses basic authentication to communicate with the APIs. what I have: const configure: ...
0 votes
1 answer
85 views
SOAP request through a HTTP proxy in PHP
I am trying to send an API call through SoapClient in PHP. Everything works perfectly in my local dev environment, but when I try to do it on the production server, I get the following error: object(...
0 votes
1 answer
150 views
Oauth2Client calling an api (no proxy) with provider Azure entra (behind a proxy)
I have a spring boot application that tries to consume a REST api that is secured by oauth2 and uses Azure Entra as identity provider. Now while my app and the api are within our company network I ...
0 votes
1 answer
86 views
TLS Error with Octokit but not Native Fetch
I am in the process of upgrading a job script that previously ran using NodeJS 16.x, upgrading to NodeJS 22.x. This is a pretty simple script that contains some API calls to GitHub using Octokit. The ...
1 vote
0 answers
235 views
Running Storybook with viteFinal() throws 404 error
I have a vite.config.ts that enables proxy with changeOrigin: true. However, when I want to merge such React configs with Storybook through this: [Bug]: Unable to use vite's server.proxy in storybook, ...
1 vote
1 answer
78 views
Golang POST proxy for unstable connections. Prevent idle conn timeout; Slowloris
I am running a proxy, which aims to proxy request from a user to a destination server. The issue is that user often runs on an unstable connection/mobile, whereas destination server has pretty tight ...
1 vote
0 answers
66 views
How to force @microsoft/signalr (8.0.7) (Node.js) to use an HTTP(S) proxy for WebSocket connections?
I’m building a Node.js client for an ASP .NET Core SignalR hub using @microsoft/[email protected]. I need all traffic—including the initial /negotiate HTTP request and the subsequent WebSocket—to go ...
1 vote
1 answer
167 views
Now I use the firebase genkit, but how to set http_proxy?
I use export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890 to set the https/http proxies, it work by using curl but I wrote the codes: // import ...
0 votes
1 answer
296 views
Does an HTTP 1.1 proxy support HTTP 2 connections?
I am trying to implement an HTTP proxy server, aimed for low latency. From what I understand, an HTTP proxy request is either a raw request with the HOST header set to the destination, or a CONNECT ...