I'm having just about the same issue as this issue. However, I'm on CentOS 7 with Apache 2.4.6. My site is on Wordpress.
Sometimes when I, or another user, submits a form, the browser will say that the connection was unexpectedly dropped by the server.
I've been able to find very little about this on Google. On the browser end, I've heard that deleting cookies and other website data helps, but I want to know how to prevent this issue for other users.
This is on SSL, as well. Here is my SSL configuration:
<VirtualHost _default_:443>
DocumentRoot "/var/www/html"
ServerName cocreationcoaching.org:443
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
Header always set Strict-Transport-Security "max-age=63072000; preload"
Header always set X-Frame-Options DENY
Header always set X-Content-Type-Options nosniff
SSLCompression off
SSLUseStapling on
SSLCertificateFile /root/cocreationcoaching.org.crt
SSLCertificateKeyFile /root/cocreationcoaching.org.key
SSLCertificateChainFile /root/cocreationcoaching.org.ca-bundle
BrowserMatch "MSIE [2-5]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>