How to load socketio over https from ssl website?
I have a HTTP nodejs/socketio server running on port 3001 successfully. I'm trying to access the server from a SSL website encrypted with certbot (let's encrypt).When I visit...
View ArticleHow to create a https server on localhost
I followed the tutorial below to create a https serverhttps://docs.nodejitsu.com/articles/HTTP/servers/how-to-create-a-HTTPS-server/and the program runs without errorsbut when I can not open...
View ArticleHow to include a certificate and key in API requests in React Native?
I'm currently working on a React Native project where I need to make an API request that requires including a certificate and key. In a typical Node.js environment, I would use the https.Agent for this...
View ArticleEquivalent of `https.agent` in React Native
I need to make an API request using this cURLcurl -L -i -X PUT –cert ./[device_cert].pem –key ./[device_cert_private_key].pem -H 'Content-Type: application/json' -H 'Content-Encoding: utf-8' -d...
View ArticleNginx 502 Bad Gateway and SSL_ERROR_RX_RECORD_TOO_LONG errors in Plesk
I have problem with my Node.js app on hosting in Plesk.After I run app I got error "TypeError: NetworkError when attempting to fetch resource." when fetch data to https://example.com:3000/abc.So I...
View ArticleUsing UrlRewriteFilter to get Tomcat to return a 301 redirect from http to https
I'm trying to find out if anyone has succeeded in using the UrlRewriteFilteravailabe from http://tuckey.org/urlrewrite/ to do a 301 permanent redirect fromhttp to https in Apache Tomcat but I don't...
View ArticlePython: Post Many Audio Files and Get the Results
PythonI have thousands of audio files on my local computer and I run an API with FastAPI that extracts features from audio files and sends these features back to me (json).The procedure is as follows:...
View ArticleThey are on the same network but they can't see each other
I wrote a website (NEXTJS + node js + express + postgresql). This website will run on LAN. That's why I ran both Next js (frontend) and nodejs (backend) sides over HTTPS, Now it should be accessible...
View ArticleForce my heroku app to use SSL (https)
I have a node app running successfully on Heroku. I have purchased an Expedited SSL certificate and it all works fine. I go to https... and get a full 'green bar' proving the site is being served over...
View ArticleHow to ignore SSL issues in axios using React Native?
Hi I'm currently working with react native on Android with Expo. I am trying to send requests to my server which has a valid ssl certificate, but for some reason axios takes it as invalid, so axios...
View ArticleCant use 'axios.post' method
I was scrapping a instagram downloader website using post method but it is showing >>> **cause: Error: write EPROTO 9C3B0000:error:0A000410:SSL routines:ssl3_read_bytes:sslv3 alert handshake...
View ArticleSetting Cookie to Secure in Production Breaks Authentication
I am using express-session for authentication in my Express application. Here is the code I have so far:app.use( session({ store: new RedisStore({ client: redis }), secret: process.env.SESSION_SECRET,...
View ArticleHow to troubleshoot SSL/TLS handshake in Google Chrome browser?
I would like to inspect the SSL/TLS handshake in Google Chrome (or Chromium) browser.I'm looking for output similar to what you'd see using commands like these from other HTTPS clients (just...
View ArticleDifficult in reaching a web application through HTTPS
I have a web application deployed as a container in Linux server in production. A certificate is from GeoTrust. It is a simple Python server using pfx. The web application is limited to internal only....
View ArticleHow to fix Apache 2.4.61 SSL self-signed on client Android 12 freezes after...
In Android 12 Chrome v126 it is possible to make 10 page updates, and then the page freezes, and is shown halfway, but the visit is visible in the apache logs, and the php script executes the launch...
View Articlehttps://custom root domain not working on vercel
Please I need help, I have successfully deployed my next js app on vercel but i have a problem.I can only access it using https://www.rootdomain.com and www.rootdomain.combut not with...
View ArticleMicronaut Http Client PKIX and trustAnchors Cerificate errors
I am using Windows OS, developing in IntelliJ IDE, using JDK 22 and Micronaut.I am trying to integrate with an application that requires a custom trusted root CA certificate, and this started to...
View ArticleXampp Website enabled https and its super slow
So I have had my company website running on a windows server with XAMPP without HTTPS and it was pretty fast (its a single page site), having just enabled it by way of the following below in...
View ArticleApache CXF reverts to HTTP when should be using HTTPS
I'm trying to write a SOAP client to connect to a PeopleSoft web service that is expecting HTTPS with WS-security. I'm using Apache CXF for the client. Here's what I've done:1) Added the server...
View ArticleApache warns that my self-signed certificate is a CA certificate
As I don't know the openssl command's arguments by heart, I am used to referring to the same Stack Overflow answer whenever I need to create self-signed certificates (for testing environments). The...
View Article