Questions tagged [https]
HTTPS stands for HTTP Secure and is a combination of HTTP and SSL/TLS (Secure Sockets Layer/Transport Layer Security) and is used to provide an encrypted connection to a website.
2,590 questions
Score of 1
1 answer
378 views
Mutual TLS Abruptly Stopped Working on Tomcat 9 and 11 Servers
I’m troubleshooting a sudden and inconsistent failure of client certificate prompts across multiple Java web applications running in a test/development environment. These applications run on two ...
Score of 2
1 answer
9030 views
Squid FATAL: No valid signing certificate configured
I'm configuring Squid 4.13 on Ubuntu 20.04.
My problem is:
FATAL: No valid signing certificate configured for HTTPS_port
For this line:
https_port 0.0.0.0:3128 intercept ssl-bump generate-host-...
Score of 0
2 answers
8836 views
Apache 2.4 https server gives connection refuse error on mac osx
I'm a newbie on Apache and I was set up my https server on OS X EI follows this article. But I always get refuse connection error, please help.
This is my httpd-ssl.conf file:
<VirtualHost *:443&...
Score of 28
9 answers
45682 views
Handling http and https requests using a single port with nginx
i was wondering if nginx is able to handle http and https requests on the same port. [*]
This is what i'm trying to do. I'm running a web server (lighttpd) handling http requests, and a C program ...
Score of 2
4 answers
12256 views
Proxy Error 502 "Error reading from remote server" Apache 2.4.18 Ubuntu with HTTPS into Docker container
I'm no expert and can't see what's the problem, but obviously this error is caused by a tiny detail it seems I can't debug. Any idea?
What I have:
I have multiple virtual hosts configured with Apache2 ...
Score of 2
1 answer
17711 views
HAProxy no passing headers with HTTPS
I've have a problem that is burning my neurons for some weeks, I have a HAProxy LB + 2 Web servers. The idea is to be able to know the real IP of the computer that hit the haproxy node, for that I ...
Score of 2
1 answer
8834 views
IIS ARR ReverseProxy with Client Certificate Authentication for backend IIS
We have legacy SOAP Web Services (https://dev-ms01/Services/default.asmx) which are written in asp.net 1.1 hosted on IIS7(win server 2008 standard),web services consumed by clients by providing Client ...
Score of 2
4 answers
22873 views
Apache server port 443 connection refused
Recently configured SSL on Apache 2.4/Ubuntu 20.04 hosted on Oracle Cloud and have been getting connection refused for https/port 443.
External device:
$ curl simpliassure.com:443
curl: (7) Failed to ...
Score of 0
3 answers
9890 views
Nginx works with localhost, fails with domain name in url
The ngnix configuration I have works for localhost, but fails when configured for the domain name.
The goal is to access port 3000 externally with basic auth. When using localhost, it is upgraded to ...
Score of 2
1 answer
19046 views
Transparent HTTPs proxy with Squid 3.5
For couple of days I'm trying to figure out how to get a transparent HTTPs proxy to work with Squid. What I'm trying to achieve is a proxy that accepts internet traffic from ports 80 & 443, routes ...
Score of 64
3 answers
209840 views
Proxy HTTPS requests to a HTTP backend with NGINX
I have nginx configured to be my externally visible webserver which talks to a backend over HTTP.
The scenario I want to achieve is:
Client makes HTTP request to nginx which is redirect to the same ...
Score of 3
2 answers
451 views
Redirect no HTTPS Site A to HTTPS Site B
I have this rule set in Apache:
RewriteEngine ON
RewriteCond %{HTTP_HOST} http://www.siteA.co.uk$ [NC]
RewriteCond %{HTTP_HOST} http://SiteA.co.uk$ [NC]
RewriteCond %{HTTP_HOST} ^SiteA.co.uk$ [NC]
...
Score of 33
10 answers
103101 views
How to deal with a 421 Misdirected Request?
I occasionally get the following 421 error:
Misdirected Request
The client needs a new connection for this request as the requested
host name does not match the Server Name Indication (SNI) in use ...
Score of 5
2 answers
7890 views
Does nginx auth_basic work over HTTPS?
I've been trying to setup a password protected directory in a SSL website as follows:
/etc/nginx/sites-available/default
server {
listen 443:
ssl on;
ssl_certificate /usr/certs/server....
Score of 5
1 answer
266 views
Is it possible to ignore (discard) an http(s) request instead of returning an error (Apache-2.4)?
Is it possible to configure apache 2.4 to simply swallow and ignore an invalid request, instead of returning an error?
Right now I have a virtual host set up as follows:
<Directory />
...