php - IE randomly aborts request to Apache server -


i'm new apache configurations. found issue in our website while loading through ie10 & 11 browsers. while load website using https of requests & randomly aborted. after long search found below article.

article 1

article 2

they asked remove below code ssl.conf

setenvif user-agent ".*msie.*" \          nokeepalive ssl-unclean-shutdown \          downgrade-1.0 force-response-1.0 

as per post, removed lines , restarted server using below command.

sudo apachectl restart 

but still ie issue https there. ssl.conf file under conf.d directory. should else change take effect?

the ssl workaround ms internet explorer needs added ssl virtualhost section (it in ssl.conf caused keepalive disabled non-ssl connections):

browsermatch "msie [2-6]" \     nokeepalive ssl-unclean-shutdown \     downgrade-1.0 force-response-1.0 browsermatch "msie [17-9]" ssl-unclean-shutdown 

[source: apache2 manual]


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -