25,047 questions
0
votes
0
answers
15
views
What happens when uploading a large file from client browser to my Spring boot server if I delay reading the multipart file from input stream?
Context: I am trying to build a Spring Boot application and have exposed a REST api endpoint to upload files(as large as 1 GB).
Question: Since the data transfer for a multipart file happens in chunks ...
0
votes
1
answer
173
views
How do I list the downloadable files using R for this NOAA website data source?
I want to download the tar.gz files from this NOAA (NCEI) data source:
https://www.ncei.noaa.gov/oa/local-climatological-data/index.html#v2/archive/
Normally, I can do something like this to get the ...
1
vote
0
answers
155
views
Caddy reverse proxy configuration without ACME, with strict SNI
I want to use Caddy as a reverse proxy for my system. The system contains a backend running on localhost:8080 to which all traffic is redirected. The proxy listens for HTTP traffic on :80 and for ...
1
vote
2
answers
69
views
Flutter ElevatedButton doesn't respond
I have an application with a form and now with a little experimental refactoring from last week 2 buttons doesn't do anything.
Logging just say "button was click " but no method is called.
...
-4
votes
1
answer
53
views
Is the URL authority used as a component of the encryption in HTTPS?
My understanding of HTTPS is that the initial server communication has the authority sent in plaintext while the remainder of the communication is encrypted, eg https://example.com/foo?bar=baz will ...
0
votes
1
answer
60
views
How to specify apache login credentials in ruby HTTP:post_response call
I have a redmine (5.1.9) server running on apache (2.4). When processing email replies, it fails trying to post an HTTP request to itself. I believe this happens because the apache server itself ...
0
votes
1
answer
85
views
Facing 400 Bad Request in EC200U HTTPS POST
I am using EC200U module to make an HTTPS POST request to my Flask server hosted on Render. The SSL configuration seems fine, but I always receive HTTP/1.1 400 Bad Request from the server.
Here are ...
0
votes
0
answers
73
views
Persistent timeout
The following lines of code seem to constantly lead to a timeout exception and I'm not sure why? Note timeout set to 10s. The error is a "System.Threading.Tasks.TaskCanceledException' - 'The ...
0
votes
2
answers
103
views
Setting certificate information after creating an IIS website with https binding via Microsoft.Web.Administration.ServerManager
I'm writing a PowerShell script to set up several websites on developers' machines in IIS (not IIS Express).
I understand that the current recommendation (as at 2025) is to create IIS websites using ...
1
vote
0
answers
206
views
NanoHTTPD server on Embedded Android TV: HTTP works but HTTPS shows blank page after authentication
I’m working on an embedded Android TV project. I’m using NanoHTTPD as the web server. The server hosts a simple web page that can be accessed from a browser by entering the IP address of the TV.
Here’...
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 ...
0
votes
0
answers
55
views
Wagtail login downgrades to http, gives error
I am setting up a local, Dockerised version of a Django Wagtail project (which I have had running locally before). I am able to see Pages in my browser, but when I try to login (on FF, Chrome, Safari-...
1
vote
0
answers
46
views
Can I open my camera on webview without "allowing" in the phone everytime it opens?
In my React Native app, I need to open a WebView redirecting to my NextJS application. Its a simple page rendering a FaceDetection component from Amazon Amplify UI. The "problem" (which I ...
1
vote
0
answers
94
views
Installing PWA in local network
I tried installing a PWA that I made to my android, but I can't find any way to do so as I need to host in https.
First I tried with GitHub Pages which hosts the web for me and after succesfully ...
0
votes
0
answers
92
views
ESP32 Can I use MQTTS with TLS and OTA over HTTPS (TLS) at the same time
I have an ESP32 IDF project using version 5.5.0 and WiFi Mesh
My project uses MQTTS currently with Eclipse Broker (using TLS). It also supports OTA updates from an HTTPS server (again TLS)
Can I use ...
0
votes
1
answer
58
views
Socket.IO not working on AWS with NGINX, Node.js, and HTTPS (400 Bad Request on WebSocket)
I'm running a Node.js application with HTTPS and Socket.IO on an AWS EC2 instance, behind NGINX. The REST APIs work fine, but the WebSocket connection to Socket.IO fails with a 400 Bad Request.
const ...
0
votes
1
answer
523
views
Problem setting Azure Application Gateway to use certificate held in Azure Key Vault
I'm trying to update an Azure Application Gateway so that it uses a certificate held in an Azure Key Vault rather than uploaded directly into the listener.
The certificate held in the Key Vault was ...
-4
votes
2
answers
124
views
What are the pros of using https when no sensitive data in at stake? [closed]
I've been maintaining some documentation websites for a few years, all using https, and all of them being read-only.
What are the factual pros of using https in that context, i.e. when no sensitive ...
0
votes
1
answer
90
views
Why the JWT over https make the token expired randomly?
I have created a REACT application that calls some REST APIs to get data from a Node.js server.
To enhance security, I am using JWT-based authentication.
It is working properly in the development ...
2
votes
2
answers
104
views
How to pre set git access token for HTTPS
Background
I have a Jenkins build pipeline that dynamically spins up a Windows VM, clones a repo containing utilities for our release process, and then uses a python script in that repo to clone a ...
0
votes
0
answers
74
views
HttpSendRequest fails
I was just working on a project, and I required a c++ code in which I could implement wininet functions to make an HTTPS request to a server. Here is the following code ...
void connect(LPCSTR ...
0
votes
0
answers
17
views
NodeJS TLS unable to verify the first certificate [duplicate]
I'm trying to connect to a public API that's on the following domain https://curs.bnr.ro, but I'm facing this issue:
Error: unable to verify the first certificate
at TLSSocket.onConnectSecure (...
-1
votes
1
answer
60
views
Is it possible to retrieve an entire directory from a web URL at once? [closed]
I'm currently attempting to scrape a wiki for some image files. I have determined that every image I want is hosted at a URL with the following structure:
https://static.wikia.nocookie.net/<game ...
1
vote
3
answers
600
views
After SSL/TLS handshake is done what port is used? 80 or 443?
When we first try to connect to a website using https we send our request to port 443. After the handshake and all those preliminary actions needed to request and verify the certificate is done and ...
0
votes
0
answers
59
views
Getting System.IO.IOException: Failed to bind to address https://0.0.0.0:5001
I have a droplet on DigitalOcean, and my application works fine when I use HTTP. However, when I try to enable HTTPS for added security, I encounter the following error when trying to run the ...