HTTPS Setup in Amazon EC2 Instance
How do I enable HTTPS in Amazon EC2 instance? Because our website is running on HTTP and doesn't provide secure connections.Would need some suggestions from others.
View ArticleRedirecting from HTTP to HTTPS with PHP
I'm working on a shopping cart website and I would like to redirect the user to a HTTPS page when he's entering his billing details and maintain the HTTPS connection for the next pages until he logs...
View ArticleAdding an SSL Certificate to JRE in order to access HTTPS sites
Context:So I'm trying to access an HTTPS site from my Java code but I am not able due to an SSL Handshake issues between my localhost and the server. It seems the reason for this issues is that the URL...
View ArticleTomcat Server doesn't start with Https configuration "Tag number over 30 is...
I am trying to convert from http to https in my serverSo I created self-signed certificate using keytool in jdk 17 and this is the version I use to run my serverThis is the command I use to generate...
View ArticleWhy loading from http return different value then loading from https for same...
I have modified script to get dictionary meaning for Chinese characters.In following in loadDictData() method when localhost used to get dictionary data file then the search return correct result but...
View ArticleAre security concerns sending a password using a GET request over https valid?
We have webpage which uses the sapui5-framework to build a spa. The communication between the browser and the server uses https. The interaction to log into the page is the following:The user opens the...
View ArticleWhat is '?' is meaning in url? [duplicate]
I'm writing code and when I type in the earthquake API link I noticed a '?' in the link and then I try to find information about it but no progress.What is the meaning of '?' in url like...
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 ArticleNode - File Upload works with http but not with https
If I use const http = require('http'); then the upload works correctly, the files are transferred, but if I change it to const https = require('https') then it no longer works and throws code 500.I use...
View ArticleESP32 HTTPS OTA. Why embed server certificates?
I've been trying out HTTPS OTA updates using the sample program.https://github.com/espressif/arduino-esp32/blob/master/libraries/Update/examples/HTTPS_OTA_Update/HTTPS_OTA_Update.inoIt works as...
View ArticleDocker Container - No response on https port in Visual Studio 2022 Debug build
i am trying to move an aspnet core application to docker.Unfortunately i can't get the application run on port https 8081.I tried several things (see my config below) but when trying to open the app...
View Articlenodejs - error self signed certificate in certificate chain
I am facing a problem with client side https requests.A snippet can look like this:var fs = require('fs');var https = require('https');var options = { hostname: 'someHostName.com', port: 443, path:...
View ArticleHTTPS Proxy for IP and Geolocation
I have the following problem:I want to start a proxy on a server that client PCs can access. Currently, the ps1 script starts an HTTP proxy and also runs an HTTP-to-HTTPS script that redirects all HTTP...
View ArticleError: EACCES: permission denied when configuring https server on AWS Lightsail
Error: EACCES: permission denied, open '/opt/bitnami/apache/conf/bitnami/certs/server.key' at Object.openSync (node:fs:596:3) at Object.readFileSync (node:fs:464:35) at...
View ArticleHow to use ssl with cloudflare tunnels, raspberry pi hosting [closed]
I've successfully gotten a simple http server running and accessible to the web via cloudflare tunnels to a raspberry pi, however I'm not sure how one would set up ssl to get https.I've tried to use...
View ArticleUnable to tunnel through proxy. Proxy returns "HTTP/1.1 407 Proxy...
I was trying to hit the https url for google api.Using the code below but its giving some errors.but i can hitting one google api http url and its working very well without any errorDataInputStream di...
View ArticleHow to fix curl:(35) schannel: next InitializeSecurityContext failed:...
I have a program created in C++ that uses CPR, a cURL wrapper, to make http requests. An alarming number of users are having issues when accessing my endpoints, to which it's only accessible with a VPN...
View ArticleWhich is the correct way to use javax.ws.rs.client.Client for SSL connections...
Our application should make use of javax.ws.rs.client.Client (whose implementation is provided by resteasy-jaxrs-3.0.19.Final.jar) to perform an HTTP POST request to an external service whose URL...
View ArticleNodejs HTTP and HTTPS over same port
I've been googling and looking here at stackoverflow, but I can't find an answer I like ;-)I have a NodeJS server that runs over HTTPS and port 3001. Now I'd like to fetch all incoming HTTP requests on...
View ArticleYii2 https URLs do not work
I try to run my local copy of my yii2 site with https. I use this in config to force http url to https'on beforeRequest' => function ($event) { if(!Yii::$app->request->isSecureConnection){...
View Article