How do I allow HTTPS for Apache on localhost?
I was asked to set up HTTPS with a self-signed cert on Apache on localhost, but how do I actually do that? I have no idea at all.
View ArticleYour connection is not private NET::ERR_CERT_COMMON_NAME_INVALID
While debugging a local ASP.NET application on Chrome for localhost Https site it's giving error:Your connection is not privateNET::ERR_CERT_COMMON_NAME_INVALID.I am not able to open localhost without...
View ArticleIs it correct to use a Nodejs https client? [closed]
I'm using below code sample for my Nodejs to call a https endpoint, is it a correct to implement it in this way?const https = require('https');// process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;const...
View ArticleSetting up NTLM Authentication with WCF to Sharepoint Web Services
I have been having a lot of difficulty setting up my WCF service to talk to Sharepoint Web services, specifically I am trying to use the Lists.asmx and Copy.asmx services. I got it working using an...
View ArticleNon-root pages of website return 404 error when doing HTTPS status check
When I load my website on my browser it works perfectly fine. When I do an HTTPS status check for my website, the root page (mydomain.com/) returns with a 200 Status code. But any non-root page...
View ArticleCookies not being sent over cross origin, locally everything works
I have a Angular application as the frontend and a NestJS app as my API.I'm using Supabase and @supabase/ssr to handle the auth flow. The auth flow is the following:I sign the user in via the provided...
View ArticleDataSnap standalone server (EXE) using SSL- TLS 1.2 not supported?
I've created a basic standalone DataSnap server, by using the project wizard and choosing the HTTPS protocol, along with a suitable SSL certificate.Everything works fine, except for the fact that it...
View ArticleHow to avoid request being upgraded to https
I have a simple express.js / React / vite app that is hosted on a digital ocean droplet.Since it is mostly for studying/entertainment I didn't bother to buy a domain name and configure https. I was...
View ArticlePOST call using https.request returns 408
An overview on what the code is supposed to do:I created a simple http request reverse proxy using express to to direct http/https requests to on-premise system for testing the application locally...
View Articlecombine authentication server and resource server requests
Currently my application uses API requests to an amazon Cognito server (authentication server) to get auth tokens and when the application initializes it sends an API request to an amazon resource...
View ArticleLaravel Reverb: solving webSocket SSL connection issues on local
Laravel (11.9)Reverb (1.0)If you're encountering errors while using Laravel Reverb with HTTPS and a self-signed certificate, here's a solution that might help. After struggling with this issue for a...
View ArticleHow to decrypt a Google QUIC packet in Wireshark?
I am studying the QUIC protocol in depth and using Google's QUICHE library to simulate QUIC connections. In the QUICHE repository, there are two example programs: quiche/quiche/quic/tools/toy_client.cc...
View Articlegit clone over HTTPs timeout
I'm using git clone over HTTPsgit clone https://github.com/BoltsFramework/Bolts-iOS.gitand get thisFailed connect to github.com:443; Operation timed outThe problem is it fails 9 of out 10 times. VERY...
View ArticleHow do I disable the security certificate check in Python requests
I am usingimport requestsrequests.post(url='https://foo.example', data={'bar':'baz'})but I get a request.exceptions.SSLError.The website has an expired certficate, but I am not sending sensitive data,...
View ArticleHttps requests "invalid request (unsupported ssl request)"
I'm having problems with Https requests in Laravel 5.1I created a Middleware like this:<?phpnamespace Subway\Http\Middleware;use Closure;use App;use Redirect;class UseSSL{ public function...
View ArticleESP01 AT Command module with Google Firebase Realtime Database
Hi I am working with a ESP01 module with AT Firmware, I have been trying to establish a communication between ESP01 and Firebase database to read and write some numerical value but right now i am only...
View ArticleIs there a way to DVC import a private https git repo?
I am trying to perform a DVC import on a private https git repo. I am using a git credential manager to store the git credentials for the repo as recommended here. When I perform the dvc import...
View ArticleMax memory usage of a chrome process (tab) & how do I increase it?
I am running several thousand https clients through chrome on one tab, I seem to be hitting a limit in the browser, when I check task manager the chrome process for that tab is using a whopping 897MB...
View Articlehow to configure nginx to serve static site over https?
I have a static html site that is working normal over http, but is not working over https,I don't know what is wrong, here is my nginx config file:server { listen 80; listen 443 ssl; root...
View ArticleWhy wont my Grafana iframe not display on my Wordpress site?
I have a Grafana server running on my Virtual Private Server which is graphing indoor air quality data. I want to share a live version of the graphs on a Wordpress page.Grafana has the facility to...
View Article