Quantcast
Channel: Active questions tagged https - Stack Overflow
↧

Symfony or Nginx is forcing a redirect to https in a Docker test environment

please help. I'm having a problem with a droplet in DigitalOcean with a Symfony app. The app portal works fine, but when I log in to a module with security (username and password), the styles and JS...

View Article


How to add HTTPS to Django app using Uvicorn?

We are developing react native app with django as a backend. We deployed django on the VM (which we bought it has Window OS) and then git pulled and running django server using uvicorn...

View Article


Nginx reverse proxy HTTPS error : (failed)net::ERR_SSL_PROTOCOL_ERROR

I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening the 443 port and using the certificates,...

View Article

Is there an alternative HttpClient handler for .NET Framework 4.5 that does...

I have a legacy project running on .NET Framework 4.5, and we recently encountered issues because HttpClient relies on Windows for HTTPS connections.Is there an alternative HttpMessageHandler that does...

View Article

Importing self-signed cert into Docker's JRE cacert is not recognized by the...

A Java Service is running inside the Docker container, which access the external HTTPS url and its self-sign certificate is unavailable to the service/ JRE cacert keystore and therefore connection...

View Article


How to bypass cloudflare ddos or redirect after 5 seconds using JSOUP?

I'm trying to get anime-list in this site, https://ww1.gogoanime.iothis is the code,org.jsoup.Connection.Response usage = Jsoup.connect("https://ww1.gogoanime.io/anime-list-A") .header("accept",...

View Article

Artifactory Curl -X PUT large file - 502 Bad Gateway The proxy server...

Artifactory version:EnterpriseX license 7.15.3 rev 71503900I have admin level access on the target repository. I'm trying to upload an artifact which is close to 10GB long (air-gapped .tgz) file. I'm...

View Article

Vercel 301 redirection works only on http requests. https requests return 200...

I'm building my own website and for SEO reasons I need to redirect all traffic from www.example.com to example.com.To achieve this, I created a vercel.json file and added it to the root directory of my...

View Article


VUGen (Loadrunner) script is not recodring for https protocal web application

When i tried to record https:// web application in VUGen (loadrunner 11) i am unable to record and got an error message "Internet Explorer cannot diplay the webpage" means not connecting to the server....

View Article


How can Nginx validate an X-Forwarded-Client-Cert

I have a Docker infrastructure that uses Nginx 1.27 to serve static files and act as reverse proxy for several related services. Access to different locations is straightforward and is controlled by...

View Article

How to disable HTTPS for the OpenBMC Event service and switch to using HTTP

I want to change the OpenBMC Event service Subscription functionality from HTTPS to the HTTP method that does not require certificates, to facilitate sending Events and receiving Event information via...

View Article

Dockerized .NET Core with SignalR and gRPC server app fails TLS handshake...

I'm running an ASP.NET Core 8 application with SignalR and a simple API endpoint. It works perfectly when run locally via Visual Studio (HTTPS on localhost:5001), but when I build and run it in a...

View Article

Tring 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 Article


Convince Firefox to send an If-Modified-Since header over HTTPS

How can I convince Firefox (3.0.1, if it matters) to send an If-Modified-Since header in an HTTPS request? It sends the header if the request uses plain HTTP and my server dutifully honors it. But when...

View Article

WebView not loading in release mode on physical iOS device, but works in...

I'm using the webview_flutter package in my Flutter app to display a webpage when a button is pressed. Everything works as expected in the Xcode iOS simulator and when I run the app on a physical...

View Article


HTTPS is not working in LAN with nginx reverse proxy [closed]

I have SSL certificated domain name. It is working on internet but in LAN nginx forwarding the request to backend app. But this is not working. What is the problem?server { listen 80; server_name...

View Article

.NET 6 SslStream.AuthenticateAsServer is slow with RSA 4096 key size

I have a HTTPs Server .NET 6 application which uses TCPclient network and SslStream.AuthenticateAsServer. What I have notice using wireshark is that it takes about 4 seconds delay for my server to send...

View Article


Benthos yaml, catch http error, send to error topic

For Benthos yaml / pipeline what we developed, we will call http API, to handle the http exception, we can catch the error thru error(), then send to error topic, but it seems that the detailed http...

View Article

can only use the Fetch Metadata Request Headers(Sec-Fetch-*) in https?

I wanna check User Entrance or not in httpwhen enter address 'http://my-proj.com' on chromeclick to bookmark shortcut on chromeetc ...My project looks like thisA: Staff(browser) ---> foo-server...

View Article

Flutter error in Dio https request. HandshakeException: Handshake error in...

I am trying to send a https request from flutter with following function:Future<void> sendOTP(PhoneNumber phoneNumber) async { try { final String url = 'https://127.0.0.1:5432/api/send_otp';...

View Article

git clone with HTTPS or SSH remote?

git clone supports both HTTPS and SSH remote URLs. Which should I use? What are the advantages of each?GitHub's docs don't make a recommendation either way. I recall in 2013 GitHub used to recommend...

View Article


Page can't be reached when I click in the browse website tab inside IIS...

I installed a new SSL certificate in my IIS Manager inside a VM. After that I added a new https binding with this certificate, port 443, IP address All Unassigned and a new host name same to the...

View Article


Login and getting session id of the logged using Https connection in java

I am trying to login to a website using the https requests and then capture the session id. I need this session id inorder to delete some tags in the web application.Till now I am able to login to the...

View Article

Content blocked about:security_git-credential-manager.exe

I am trying to clone an Azure repo into a VM in Azure. My command is: git clone https://dev.azure.com/Prynada/Prynada/_git/Automated_test. When I run it, it opens an Internet explorer prompt with the...

View Article

Making a HTTP request from a static web page - blocked by CORS policy

I simply want to make a GET request to jsonbin.io from a static web page. I have used postman to successfully make the request but when I attempt the HTTP request on my web page I keep getting the...

View Article


URL change in HTTPS automatically

Test URL = https://www.uktherapyhub.co.uk/info.phpCode is below <?php include 'wp-load.php'; ?><a href="http://adrianmatthewstherapy.co.uk">http://adrianmatthewstherapy.co.uk</a>Above...

View Article

Vite https on localhost

I'm trying to get https working on my localhost environment for Vite. Chrome shows an invalid certificate error.I've set up my vite.config.js file like this:import { defineConfig } from 'vite'import...

View Article

suds is not using HTTPS, even though the URL is set correctly

Consider this code:from suds.client import Clientwsdl = "https://path/to/scv?wsdl"client = Client(wsdl)token = client.factory.create("ns1:AuthenticationToken")token.LoginName = "login"token.UserId =...

View Article

Switched from HTTPS to HTTP, but still getting 'should be served over HTTPS'...

I have a domain which was previously served via HTTPS on a Node.js environment. However, I had to remove SSL because Node.js hosting on Cafe24(Korean web hosting service like cloudflare) doesn't allow...

View Article



Self signed certificate jetty

I'm using Jetty server to run CAS (http://jasig.github.io/cas/4.1.x/index.html).To enable ssl support I have generate a certifice with the follows commands:openssl genrsa -des3 -out jetty.keyopenssl...

View Article


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>