How To Display All Virtual Hosts Defined for Apache 2

Author: , January 29th, 2024

How To Redirect to https in Apache Using mod_rewrite

Author: , November 17th, 2017

How To Enable Compression On Apache Webservers

Author: , April 26th, 2016

Add the following to either .htaccess or httpd.conf:

How To Fix SUEXEC Warnings After Yum Update On AWS Linux

Author: , March 3rd, 2012

After a recent yum update I started getting the following errors when starting Apache: Warning: SuexecUserGroup directive requires SUEXEC wrapper. It turns out that the permissions for suexec need to be reset: chmod 4111 /usr/sbin/suexec

How To Force Apache To Use https

Author: , October 26th, 2011

Apache 2 SSL Hints

Author: , February 16th, 2011

yum install mod_ssl vim /etc/httpd/conf.d/ssl.conf If you got a sign certificate from Thawt, is may be in a signed bundle in PKCS #7 format. Look for this at the top: —–BEGIN PKCS #7 SIGNED DATA—– To extract the cert that you will need for Apache, run the following command: openssl pkcs7 -print_certs -in signed_bundle.pkcs7 Your […]