<IfModule mod_ssl.c>
<VirtualHost *:443>
	ServerName bunny.lcsoftware.dynalias.com
	DocumentRoot "/websites/bunny.lcsoftware.dynalias.com"
	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/bunny.lcsoftware.dynalias.com.log combined
	LogLevel warn ssl:warn
	HostNameLookups off

	<Directory "/websites/bunny.lcsoftware.dynalias.com">
	        AllowOverride all AuthConfig Options
                Allow from all
                Require all granted
                SetOutputFilter DEFLATE
                SetInputFilter DEFLATE

		Order allow,deny
		Allow from all
		Options Indexes FollowSymLinks
        </Directory>

SSLCertificateFile /etc/letsencrypt/live/bunny.lcsoftware.dynalias.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/bunny.lcsoftware.dynalias.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
