19,487 questions
0
votes
1
answer
35
views
Zeppelin Helm installation behind a client proxy [closed]
I have installed Zeppelin with Helm, using the duyet/zeppelin chart on a client's Microk8s cluster and this client has a proxy configured.
When I try to run a notebook that installs packages,
%python
#...
Advice
0
votes
1
replies
37
views
Setting up tcp proxy for the first time, probably misunderstood some concepts
This is my first time using a Proxy to intercept tcp data and I think I misunderstood some concepts and this is why I'm unable to correctly intercept/log packets.
Here is my setup:
My application:
My ...
0
votes
1
answer
25
views
How to fix 403 when accessing a blob with a proxy
I'm trying to embed Azure Dgital Twins 3d scene into a React application, using this exact repo
https://github.com/malichishti/adt-3d-embedder-app
The app uses msal to authenticate with the azure ...
0
votes
0
answers
63
views
wfp FWPM_LAYER_DATAGRAM_DATA_V4 modify loopback inbound udp packet address failed
I'm writing a wfp driver which redirect all tcp/udp traffic to a local proxy service. I tried to modified the dest ip and port of outbound udp packets to my local proxy in the ...
2
votes
1
answer
336
views
npm install @lvce-editor/ripgrep install dependency on from Github that doesn't respect proxy settings
I am using a .npmrc with the following setup for a proxy:
proxy=http://localhost:8887
https-proxy=http://localhost:8887
strict-ssl=false
But running this statement:
npm install @lvce-editor/ripgrep
...
1944
votes
21
answers
615k
views
What's the difference between a proxy server and a reverse proxy server? [closed]
What is the difference between a proxy server and a reverse proxy server?
0
votes
0
answers
41
views
Gravitee OSS Gateway returns 404 when accessing proxied Swagger UI
I’ve deployed Gravitee OSS as an API Gateway on a VM, with a local DNS entry so it’s available at:
http://apim.local:8082
I also have an API running externally at:
https://my-app.k8s.acme.fr/spring/...
404
votes
29
answers
678k
views
Cannot download Docker images behind a proxy
I installed Docker on my Ubuntu 13.10 (Saucy Salamander) and when I type in my console:
sudo docker pull busybox
I get the following error:
Pulling repository busybox
2014/04/16 09:37:07 Get https://...
615
votes
19
answers
1.6m
views
performing HTTP requests with cURL (using PROXY)
I have this proxy address: 125.119.175.48:8909
How can I perform a HTTP request using cURL like curl http://www.example.com, but specifying the proxy address of my network?
328
votes
37
answers
538k
views
How to clear https proxy setting of NPM?
How can I clear the previous ssl proxy setting of NPM?
well, I search a lot, but all post I got is mainly about how to set proxy in corporate network.
I try to set proxy to nothing:
npm config set ...
366
votes
33
answers
786k
views
Is there a way to make npm install (the command) to work behind proxy?
Is there a way to make npm install work behind a proxy? I tried changing the proxy variable in the .npmrc file but it didn't work. I'm trying to avoid doing a manual download.
544
votes
30
answers
902k
views
How do I pull from a Git repository through an HTTP proxy?
Note: while the use-case described is about using submodules within a project, the same applies to a normal git clone of a repository over HTTP.
I have a project under Git control. I'd like to add a ...
0
votes
0
answers
74
views
Azure API Management: "Value is not a valid absolute URL scheme" error when using conditional proxy URL with named values
I'm encountering an error in Azure API Management when trying to use a conditional expression to set a proxy URL based on the deployment region. The proxy URL is constructed using named values.
The ...
0
votes
0
answers
86
views
How can Playwright send the Proxy-Authorization while using Chromium?
I have a proxy server that requires a username and password to access (e.g., 127.0.0.1:8000, username: abcdef, password: 123456).
When I use Playwright to access a destination website through this ...
187
votes
28
answers
530k
views
Problems using Maven and SSL behind proxy
I just downloaded Maven and was trying to run the simple command found on the "Maven in Five Minutes" page (http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html). This is the ...
184
votes
28
answers
429k
views
Using npm behind corporate proxy .pac
I need to download several packages through npm but our corporate proxy configuration is a .pac file (i'm on windows)
I have already tried
npm config set proxy http://mydomain\username:[email protected]....
385
votes
21
answers
929k
views
How do I set the proxy to be used by the JVM
Many times, a Java app needs to connect to the Internet. The most common example happens when it is reading an XML file and needs to download its schema.
I am behind a proxy server. How can I set my ...
137
votes
35
answers
712k
views
Could not resolve all dependencies for configuration ':classpath'
I cant seem to get build tools for the latest gradle at all. I suspect its something to do with proxy setting for gradle. I have had a good look online but still cant seem to find a solution. I use ...
0
votes
0
answers
51
views
How to build a proxy as seen in ScrollViewReader and GeometryReader?
GeometryReader and ScrollViewReader use proxies but I don't know how they are constructed. Feels like a black box.
struct ContentView: View {
var body: some View {
GeometryReader { proxy ...
84
votes
4
answers
51k
views
Unable to install Charles root certificate on iOS Simulator 14.5
On Charles mac app, if I go to
Help > SSL Proxying > Install Charles Root Certificate on iOS
Simulators
and then run any Simulator from Xcode I don't see Charles certificates installed on ...
0
votes
0
answers
45
views
looking for specific api call using titanium web proxy in my c# app doesn't work but when i use fiddler classic it works
I'm trying to intercept HTTP/HTTPS traffic from a Windows application using Titanium Web Proxy in my C# app.
My C# app sets up an explicit proxy on port 8888 and captures most HTTPS requests just fine ...
0
votes
1
answer
92
views
Cannot communicate to SMTP server with socket and proxy due to timeout error [closed]
Here's my code for simple proxy validation:
import smtplib, socks
socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5,
'*.*.*.*',
<PORT>,
...
0
votes
3
answers
107
views
Why is HTTP CONNECT safe to open an SSL tunnel through a proxy
As I understand, in order to open a SSL tunnel between client and a server through a proxy:
we open a TCP socket with the proxy.
we make an HTTP CONNECT method, which basically makes the proxy only ...
219
votes
18
answers
498k
views
Gradle proxy configuration
I need web access from Gradle through a proxy server to use the Gradle/Artifactory integration for Jenkins. To reduce possible causes for issues, I manually add the Artifactory plugin in build.gradle ...
159
votes
12
answers
1.1m
views
Axios having CORS issue
I added proxy in package.json and it worked great, but after npm run build the CORS issue has resurfaced again, does anyone know how to deal with CORS issue after npm run build in React.
I have tried ...