File: //etc/apache2/sites-available/library.bradfordsc.conf
<VirtualHost *:80>
ServerName library.bradfordsc.cl
DocumentRoot /var/www/wp_library
<Directory /var/www/wp_library>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/library_error.log
CustomLog ${APACHE_LOG_DIR}/library_access.log combined
</VirtualHost>
<VirtualHost *:443>
ServerName library.bradfordsc.cl
DocumentRoot /var/www/wp_library
<Directory /var/www/wp_library>
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}/library_ssl_error.log
CustomLog ${APACHE_LOG_DIR}/library_ssl_access.log combined
</VirtualHost>