25,158 questions
0
votes
0
answers
14
views
SSL Certificates for local Intranet based clients [duplicate]
I have the following situation. I have a web application running on IIS written in ASP.NET Core, and I would like to host it over https.
This means I need a SSL certificate for IIS but here's the crux ...
0
votes
0
answers
20
views
nifi 2.3.0 fails to connect to bitbucket using GitHubRegistryClient
I'm setting up nifi 2.3.0 with GitHubRegistryClient to by-pass the nifi registry component.
When configuring GitHubRegistryClient:
I used the bitbucket repo https clone url
I created PAT(Personal ...
-3
votes
0
answers
41
views
Slow Response on HTTPS request [duplicate]
When we moved http to https then we observed streaming data response come after some delay so how to fix from my side using java http connection.
Here my https request code
HttpURLConnection ...
0
votes
1
answer
23
views
suds is not using HTTPS, even though the URL is set correctly
Consider this code:
from suds.client import Client
wsdl = "https://path/to/scv?wsdl"
client = Client(wsdl)
token = client.factory.create("ns1:AuthenticationToken")
token....
-2
votes
0
answers
66
views
Making a HTTP request from a static web page - blocked by CORS policy
I simply want to make a GET request to jsonbin.io from a static web page. I have used postman to successfully make the request but when I attempt the HTTP request on my web page I keep getting the ...
0
votes
0
answers
25
views
Content blocked about:security_git-credential-manager.exe
I am trying to clone an Azure repo into a VM in Azure. My command is: git clone https://dev.azure.com/Prynada/Prynada/_git/Automated_test. When I run it, it opens an Internet explorer prompt with the ...
0
votes
0
answers
14
views
Page can't be reached when I click in the browse website tab inside IIS Manager in a nre https binding created with a new SSL certificate
I installed a new SSL certificate in my IIS Manager inside a VM. After that I added a new https binding with this certificate, port 443, IP address All Unassigned and a new host name same to the ...
0
votes
0
answers
41
views
.NET 6 SslStream.AuthenticateAsServer is slow with RSA 4096 key size
I have a HTTPs Server .NET 6 application which uses TCPclient network and SslStream.AuthenticateAsServer. What I have notice using wireshark is that it takes about 4 seconds delay for my server to ...
0
votes
1
answer
33
views
Benthos yaml, catch http error, send to error topic
For Benthos yaml / pipeline what we developed, we will call http API, to handle the http exception, we can catch the error thru error(), then send to error topic, but it seems that the detailed http ...
1
vote
0
answers
46
views
Dockerized .NET Core with SignalR and gRPC server app fails TLS handshake (Client network socket disconnected) despite HTTPS working locally
I'm running an ASP.NET Core 8 application with SignalR and a simple API endpoint. It works perfectly when run locally via Visual Studio (HTTPS on localhost:5001), but when I build and run it in a ...
0
votes
0
answers
29
views
Vercel 301 redirection works only on http requests. https requests return 200 status. How can I apply the redirection to https requests?
I'm building my own website and for SEO reasons I need to redirect all traffic from www.example.com to example.com.
To achieve this, I created a vercel.json file and added it to the root directory of ...
0
votes
0
answers
21
views
Is there an alternative HttpClient handler for .NET Framework 4.5 that does not depend on Windows for HTTPS?
I have a legacy project running on .NET Framework 4.5, and we recently encountered issues because HttpClient relies on Windows for HTTPS connections.
Is there an alternative HttpMessageHandler that ...
-1
votes
1
answer
67
views
Nginx reverse proxy HTTPS error : (failed)net::ERR_SSL_PROTOCOL_ERROR
I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening on port 443 and using the certificates, ...
-2
votes
1
answer
44
views
Symfony or Nginx is forcing a redirect to https in a Docker test environment
please help. I'm having a problem with a droplet in DigitalOcean with a Symfony app. The app portal works fine, but when I log in to a module with security (username and password), the styles and JS ...
-2
votes
2
answers
49
views
How to add HTTPS to Django app using Uvicorn?
We are developing react native app with django as a backend. We deployed django on the VM (which we bought it has Window OS) and then git pulled and running django server using uvicorn backend.asgi:...