Spring Boot - enable and configure SSL certificate
I have this certificates / files in order to enable SSL for my application:I found out that this properties are needed for Spring Boot to enable...
View ArticlePurpose of Secure attribute on cookies on HSTS
I wanted to set the secure attribute to my bearer token cookies, then I remembered that I enforce https on my website. So I didn't think it has any purpose for my use case, but I noticed other sites...
View ArticleCan't add CA certificate for localhost
I have Ubuntu 22.04.4 LTS. I've been developing telegram bot and tried to create nginx configuration for remote server. During this i've broken my localhost certifiate. Now when i run my react app on...
View ArticleHow to create an HTTPS server in Node.js?
Given an SSL key and certificate, how does one create an HTTPS service?
View ArticleDebug websocket connection that works in postman, but not on website
I have a react frontend (website) that tries to estabish a https websocket connection to my java spring application backend (running on a cloud vm). I can establish the ws connection via postman as...
View Article"x509: certificate is not valid for any names" despite openssl shows correct
I'm following the docker book to configure Docker Engine API with SSL, here's the whole process:# CAecho 01 | sudo tee ca.srlsudo openssl genrsa -des3 -out ca-key.pemsudo openssl req -new -x509 -days...
View ArticleJsoup when connecting via the link, I get errors
when connecting via the link "https://dev.bolshoi.ru/visit/buyingnew/", I get errors, there is no error with other links, tell me what to do?follow the link, for example "https://ya.ru /", there are no...
View ArticlePost request works through Proxyman but not through Python
I need to send a post request to an API:when sending the request through Proxyman it works fineI tried using the same exact data (double and triple checked) to send a post request and keep getting...
View ArticleHttp Request works when using HTTP/1.1, fails when using HTTP/2
I have an old Angular site that is making an API call to my .Net Framework API.Angular:return this.http.post<User>( this.apiUrl +'directory/user',{'AuthTicket': authTicket } ).pipe( map(result...
View ArticleTring to connect using HTTPS: Server redirected too many times
I am trying to connect to a secured connection URL (https://example.com ) using a Java program to check availability of the site. Generally, I connect to https://example.com in browser by disabling...
View ArticleRedirect HTTP to HTTPS on default virtual host without ServerName
On my apache server I'd like to be able to redirect all incoming http requests to the equivalent https request. The catch is that I'd like to be able to do this for my default virtual host without...
View Articlefetching from twitter api (node.js) [closed]
I am trying to reach followers count by username by this apiapi.twitter.com/labs/2/users/by/username/:usernamehttps://github.com/All1nol/omarBentoGrid/tree/master/backendwhat i have doneapp.jsOfficial...
View Article'TypeError: Protocol "http:" not supported. Expected "https:"' error when...
I'm trying to use node-fetch to capture the contents of a page, and running into an unexpected error. I checked a similar question but it doesn't seem relevant. I am trying to fetch a HTTPS site using...
View ArticleGoogle Domains Github pages Enforce HTTPS — Unavailable for your site because...
I have published a static site through github pages. I can access it through https://www.<sitename>.github.io. Now that I am trying to use a custom domain name provisioned through google domains,...
View Articleusing THTTPSoapDispatcher and THTTPSoapPascalInvoker for https in Delphi
By Delphi I developed a stand alone webserver for http. I used THTTPSoapDispatcher and THTTPSoapPascalInvoker in it.How can I use them for https? Do THTTPSoapDispatcher and THTTPSoapPascalInvoker work...
View ArticleLoad X509 certificate from disk .Net Core
I've created an X509 certificate using OpenSSL. I am trying to load it using the Import method on the X509Certificate2 class, in .NET Core 2.0.var cert = new X509Certificate2();cert.Import(_path);But...
View ArticleSlow SSL / Initial connection times on Apache webserver
Somewhere in the last couple of months I started noticing that intermittently there is a really long SSL connection time on a couple of my servers.The setup for this server:Apache 2.4.56 on Debian...
View ArticleByBit API v5 returning error code 170130: "Data sent for parameter '%s' is...
I am trying to send a spot order using a unified account. There is absolutely no info about what this error message means and as far as I can tell from the ByBit v5 API docs I am doing everything...
View ArticleSelf Signed certificates in kotlin multiplatform compose with ktor
I am currently building an android/ios mobile application with kotlin multiplatform compose. This application uses a django server for it's backend. The server has some self signed certificates that...
View ArticleHow to parse Twitter API Response in Node.js [closed]
I'm developing a Node.js application that fetches data from the Twitter API. I'm using the https module to make HTTP requests and parsing the JSON response to extract the data. However, I'm...
View Article