File: //etc/apache2/sites-available/talleres.bradford.cl.conf
<VirtualHost *:80>
ServerAdmin webmaster@hitch.cl
ServerName talleres.bradford.cl
ServerAlias talleres.bradford.cl
DocumentRoot /var/www/talleres.bradford
<Directory /var/www/talleres.bradford>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/talleres.bradford.cl-error.log
CustomLog ${APACHE_LOG_DIR}/talleres.bradford.cl-access.log combined
</VirtualHost>
<VirtualHost *:443>
ServerName talleres.bradford.cl
DocumentRoot /var/www/talleres.bradford
<Directory /var/www/talleres.bradford>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/bradford/bradford_cl.crt
SSLCertificateKeyFile /etc/ssl/bradford/bradford.cl.key
SSLCertificateChainFile /etc/ssl/bradford/bradford_cl.ca-bundle
ErrorLog ${APACHE_LOG_DIR}/talleres_ssl_error.log
CustomLog ${APACHE_LOG_DIR}/talleres_ssl_access.log combined
</VirtualHost>