File: //etc/apache2/sites-enabled/calendars.bradfordsc.conf
<VirtualHost *:80>
ServerName calendars.bradfordsc.cl
DocumentRoot /var/www/wp_calendars
<Directory /var/www/wp_calendars>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/calendars_error.log
CustomLog ${APACHE_LOG_DIR}/calendars_access.log combined
</VirtualHost>
<VirtualHost *:443>
ServerName calendars.bradfordsc.cl
DocumentRoot /var/www/wp_calendars
<Directory /var/www/wp_calendars>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/bradfordsc/bradfordsc_cl.crt
SSLCertificateKeyFile /etc/ssl/bradfordsc/bradfordsc_cl.key
SSLCertificateChainFile /etc/ssl/bradfordsc/bradfordsc_cl.ca-bundle
ErrorLog ${APACHE_LOG_DIR}/calendars_ssl_error.log
CustomLog ${APACHE_LOG_DIR}/calendars_ssl_access.log combined
</VirtualHost>