25,047 questions
0
votes
1
answer
34
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....
0
votes
0
answers
25
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
1
answer
129
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 ...
0
votes
0
answers
80
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 ...
-1
votes
1
answer
177
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
2
answers
165
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:...
2
votes
1
answer
190
views
Is the origin sent in the referer header when the current document establishes a "strict-origin" policy and the protocol level improves?
I would like to know if the origin of the current document is sent in the referer header when it establishes a "strict-origin" policy and the protocol level improves.
For examples:
The ...
0
votes
0
answers
44
views
net::ERR_SSL_PROTOCOL_ERROR - When frontend calls backend
I have set up a frontend application (React) and a backend application(Java—Spring Boot) on my droplet. I am running an Nginx webserver with SSL certification.
I can't get my front end to call my back ...
1
vote
1
answer
466
views
BioTime login fails with 403 when using HTTPS behind Nginx reverse proxy
We have a ZKTeco MB10 Attendance Device
I have successfully installed it, and connected to the BioTime 9.5 that we are hosting on a VPS,
I have pointed a subdomain record to the the VPS ip address and ...
0
votes
1
answer
461
views
How to enabling HTTPS for keycloak behind nginx
I’m running Keycloak in a Docker container and have set up an Nginx reverse proxy to make it accessible at docsbot.agency. My current setup allows access via HTTP, but I need to enable HTTPS using an ...
0
votes
0
answers
72
views
HTTP Error 403 when using Apache WebClient on HTTPS Service (that does not have any certificates)
The java application I'm working used to call an inhouse rest service via http which delivers a PDF file as a response. The rest service has now changed it's url and switched from http to https.
I ...
0
votes
0
answers
59
views
How to disable HTTPS for the OpenBMC Event service and switch to using HTTP
I want to change the OpenBMC Event service Subscription functionality from HTTPS to the HTTP method that does not require certificates, to facilitate sending Events and receiving Event information via ...
0
votes
1
answer
53
views
Retrieve server certificate in urllib3
In python's urllib3, can one retrieve the server certificate after making a successful HTTPS request? If so, how?
0
votes
1
answer
107
views
Bad HTTP request when using Swift
I am trying to use a proxy with auth in Swift. I finally got it working using NWConnection. And I can see from my proxy server that it's actually getting the request from my iOS app when I call this ...
2
votes
1
answer
2k
views
Website loading as "Not secure" only in Chrome Incognito Mode
Our website has an active SSL, no mixed content and HTTPS redirection enforced, however if I type in the URL as "http://example.com/products" or "http://example.com.com/products/", ...
4
votes
1
answer
299
views
Server-Sent-Events (SSE) and HTTPS
I have a spring-boot backend and wanted to create a SSE endpoint, sample:
@CrossOrigin(origins = "http://localhost:4200") // Angular Dev-Server
@GetMapping(path = "/stream-flux", ...
0
votes
0
answers
83
views
How to CURL support to use HTTPS
I install the curl on the arm cross compile environment.
But the following error occurred
curl https://sasca37.tistory.com
curl: (1) Protocol https not supported or disabled in libcurl
The below is ...
2
votes
0
answers
126
views
KTOR + Netty - Configuring HTTPS Max Header List Size
My front-end application uses OKTA and passes the access token to my backend. The backend then parses the token information to get user information and check whether the token is expired. ...
0
votes
1
answer
87
views
Google Maps Static API request isn't working over https and http2 (h2)
I have a webpage served over https which should display an image created via the Google Maps Static API. I try to create the map image by making a request to the API via http like this:
<img src=&...
1
vote
0
answers
43
views
Is the TLS version used to access a site is decided by application or browser, how to configure it
Is the TLS version used to access a site is decided by application or browser. How to confiure an application to ensure that it uses atleast certain minimum version of TLS for your web application ...
1
vote
1
answer
138
views
How to setup proper SSL between 2 Scala/Akka web services?
Background:
I have a Scala (with AKKA-http) webserver, that is able to talk to instances of itself (de-centralised model). I recently upgraded the server to use SSL and https.
I have run into a ...
1
vote
1
answer
316
views
How to I deploy nextjs application in a production environment, using ssl?
There does not seem to be a definitive answer to this. I have seen other questions posted here where people suggest using nginx to proxy ssl and run the next app as http. I've also seen posts about --...
0
votes
0
answers
38
views
Why Android heaps over a Thread task?
I am trying to check if my server is on/off from an Android application. From my MainActivity I use this code snippet:
try {
new CheckServer().start();
} catch (MalformedURLException e) {
...
1
vote
0
answers
124
views
Blazor HTTPS client server certificate doesn't work
My Blazor client server solution took a lot of fussing to get the cert just to be recognized.
// These commands allow you to reset when needed
//dotnet dev-certs https --trust
//dotnet dev-certs https ...
-1
votes
1
answer
57
views
Redirect After a Server Response Without JavaScript
I'm creating a website with no JavaScript, and I'm puzzled about how platforms like Dread manage to redirect users (e.g., in a queue system) pending a server response.
Here's what I want to achieve:
...