Skip to content

Instantly share code, notes, and snippets.

View kferran's full-sized avatar

Kyle Ferran kferran

View GitHub Profile
@kferran
kferran / 000-default.conf
Last active November 3, 2017 00:05
vhost bundle of ssl and regular
<VirtualHost *:443>
ServerAdmin [email protected]
DocumentRoot /var/www/html
ServerName example.com
ServerAlias www.example.com
SSLEngine on
SSLCertificateFile /address/of/your/certificate.crt
SSLCertificateKeyFile /address/of/your/keyfile.key
SSLCACertificateFile /address/of/your/certificate_chain_file.crt
<Directory /var/www/html>