Questions tagged [mod-ssl]

The Apache Httpd interface to OpenSSL

mod_ssl is a module for the Apache HTTPD webserver which allows it to perform SSL and TLS encryption on connections. Documentation is provided by Apache covering installation and setup for httpd 2.0 and 2.2

This tag should be used for questions around using mod_ssl in your application, extending it, controlling the state from your application, writing other Apache modules that talk to it and similar.

For questions around setting it up, and advanced configuration, the mod-ssl tag on ServerFault is likely to be a better place to ask.

118 questions
2
votes
0 answers

installing apache mod_ssl with latest openssl version (/usr/local/openssl)

I need to update my apache 2.2.21 installation to use the latest openssl version. But somehow it just keeps using 0.9.8k. (according to server-status). I followed this guide and compiled apache with the custom ssl…
StefanPelders
  • 29
  • 1
  • 3
2
votes
2 answers

Apache https redirection results in 400 error

This issue is happening on a Red Hat instance. The apache installed is version [Apache/2.2.19] and the mod_ssl version is [2.2.16.] HTTP access works fine, but when mod_rewrite is enabled for http to https redirection, it results in following 400…
Noman Amir
  • 933
  • 3
  • 15
  • 30
2
votes
3 answers

How to access mod_ssl environment variables from django using mod_wsgi?

I'm trying to get the client's certificate and sign an xml file using it. I have added the following to my virtual hosts: SSLVerifyClient optional SSLVerifyDepth 1 SSLOptions +stdEnvVars This should allow mod_ssl to get the user's certificate. But…
user126284
2
votes
1 answer

Dazed and confused about configuring Apache with SSL support

I've spent a few hours trying to configure my Apache server to use SSL with no public IP, just localhost. I've created the certificate OK, I think (it has been like a crash course on black magic for me), and when I try tro access https://localhost,…
user84077
2
votes
2 answers

upgrading apache2 from php5.6 to php7.3 gives segmentation fault on mod_ssl

Problem description I have an server that is running debian 8.11, with an apache2 server currently using PHP 5.6. I want to upgrade to PHP 7.3 and have installed PHP 7.3 with apt ( php7.3 php7.3-fpm php7.3-mysql php7.3-curl php7.3-json php7.3-gd…
user3316041
  • 157
  • 15
2
votes
1 answer

Apache https request status pending for some requests and 502 status is returned

I have deployed the server on EC2 and tomcat. I have purchased the domain from goDaddy. I am using HTTPD with mod_ssl for URL redirect. When I am trying to access my server some request is in the pending state but when I refresh the browser or…
Akshay Chavan
  • 146
  • 1
  • 9
2
votes
2 answers

I am having problems installing mod_ssl onto my AWS Apache instance

I am having problems installing mod_ssl onto my AWS Apache instance... [ec2-user@ip-172-31-18-185 ~]$ yum install mod_ssl Loaded plugins: priorities, update-motd, upgrade-helper You need to be root to perform this command. [ec2-user@ip-172-31-18-185…
2
votes
2 answers

Apache SSL: "an obsolete key exchange (RSA)"

I have a site https://warsoftheheroes.eu/ which is hosted using Apache with SSL with Let's Encrypt certyficate. In Chrome/Chromium browser in developer tools -> security I see this message: Obsolete Connection Settings The connection to this site…
2
votes
0 answers

SSLError when moving app to Apache mod_wsgi

So with the help of Graham I realize I need to rebuild the mod_ssl.so to point to the new OpenSSL version. I found the following post with similar problem but not much suggested:…
Starfish
  • 21
  • 2
2
votes
0 answers

undefined symbol: ap_array_str_contains

I am trying to run Apache on Amazon Linux with SSL for my website and I configured all ssl prerequisites. But when I start the Apache it throws the error saying: Starting httpd: httpd: Syntax error on line 58 of /etc/httpd/conf/httpd.conf: Syntax…
Nagarjuna D N
  • 541
  • 6
  • 26
2
votes
2 answers

Apache 2, SSL, and Client Certificates

I have set up a number of Virtual Hosts all using SSL. Everything worked fine. Then I needed to add SSL Client Authentication to one of them (let's call it the SVN host). After enabling client certificates for the SVN host, the host stopped working,…
fedmest
  • 709
  • 5
  • 17
2
votes
2 answers

Apache https client authentication or redirect

I would like to know if there is a way to redirect a browser from a webpage, if it hasn't presented a valid client certificate. For example: This section on my website requires a mutual SSL authentication: subdomain.domain.com This is the main…
SetMeUp
  • 31
  • 1
  • 2
2
votes
1 answer

How to install mod_ssl on windows server 2008 64bits

We manage our own VM Windows Server 2008 R2 STD 64 bits which is use as a web server. APACHE httpd-2.2.22-win32-x86-no_ssl is install on it since the beggining cause this was the only self install file (MSI) that we found on Apache web site. I now…
Jaune Citron
  • 319
  • 3
  • 13
2
votes
1 answer

Apache, mod_ssl "request failed: error reading the headers" for a specific user

Currently we have an Apache 2.2.3 server with mod_ssl 2.2.3 running Django, with users authenticating by using a x509 certificate. So far the system is running perfectly except for a single user, who when trying to upload a file receives 400 Bad…
Semant
  • 21
  • 1
  • 3
1
vote
0 answers

Apache2 + SSL + Django + wsgi

I am trying to run ssl module on Apache where is running my Django application. For running Django on Apache2 I use wsgi(mod_wsgi.so module). Everything is good when the following line in httpd.conf is commented: LoadModule ssl_module…
sunprophit
  • 1,639
  • 4
  • 16
  • 39