Hello, Can someone take a look at the below virtual host configuration? Whenever I put it in my apache 2.4 the server returns an alert unexpected network read error connection aborted message. If I take it out the server behaves normally. Of course nothing is in any of the logs I've got LogLevel set to warn. An apachectl -t says the files are syntactically correct. Any ideas? Thanks. Dave. # # Virtual host file # # The example.com http and https virtual host <VirtualHost *:80 *:443> ServerAdmin webmaster@xxxxxxxxxxx DocumentRoot "/usr/vhosts/example.com/htdocs/" ServerName example.com ServerAlias www.example.com mail.example.com ErrorLog "|/usr/local/sbin/rotatelogs -l /usr/vhosts/example.com/logs/error.log" CustomLog "|/usr/local/sbin/rotatelogs -l /usr/vhosts/example.com/logs/access.log-%Y-%m-%d.log 86400" combined # share well-known for renewal via Let's Encrypt! Alias /.well-known/acme-challenge/ /usr/local/www/.well-known/ ErrorDocument 404 /errordocs/error404.htm SSLCertificateFile "/usr/local/etc/ssl/acme/example.com/fullchain.pem" SSLCertificateKeyFile "/usr/local/etc/ssl/acme/private/example.com/privkey.pem" SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:ECDHE-RSA-AES128-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA128:DHE-RSA-AES128-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-GCM-SHA128:ECDHE-RSA-AES128-SHA384:ECDHE-RSA-AES128-SHA128:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA128:DHE-RSA-AES128-SHA128:DHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA384:AES128-GCM-SHA128:AES128-SHA128:AES128-SHA128:AES128-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4:!3DES SSLEngine on <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule .* https://%{HTTP_HOST}/%{REQUEST_URI} [R=301,L,QSA] </IfModule> <Directory "/usr/vhosts/example.com/htdocs/"> Options FollowSymLinks AddOutputFilterByType DEFLATE text/html text/plain text/xml AllowOverRide None Require all granted </Directory> </VirtualHost> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx