Advertisement
Guest User

Untitled

a guest
Mar 4th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. # SSL Protocol Adjustments:
  2. # The safe and default but still SSL/TLS standard compliant shutdown
  3. # approach is that mod_ssl sends the close notify alert but doesn't wait for
  4. # the close notify alert from client. When you need a different shutdown
  5. # approach you can use one of the following variables:
  6. # o ssl-unclean-shutdown:
  7. # This forces an unclean shutdown when the connection is closed, i.e. no
  8. # SSL close notify alert is send or allowed to received. This violates
  9. # the SSL/TLS standard but is needed for some brain-dead browsers. Use
  10. # this when you receive I/O errors because of the standard approach where
  11. # mod_ssl sends the close notify alert.
  12. # o ssl-accurate-shutdown:
  13. # This forces an accurate shutdown when the connection is closed, i.e. a
  14. # SSL close notify alert is send and mod_ssl waits for the close notify
  15. # alert of the client. This is 100% SSL/TLS standard compliant, but in
  16. # practice often causes hanging connections with brain-dead browsers. Use
  17. # this only for browsers where you know that their SSL implementation
  18. # works correctly.
  19. # Notice: Most problems of broken clients are also related to the HTTP
  20. # keep-alive facility, so you usually additionally want to disable
  21. # keep-alive for those clients, too. Use variable "nokeepalive" for this.
  22. # Similarly, one has to force some clients to use HTTP/1.0 to workaround
  23. # their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
  24. # "force-response-1.0" for this.
  25. BrowserMatch "MSIE [2-6]" \
  26. nokeepalive ssl-unclean-shutdown \
  27. downgrade-1.0 force-response-1.0
  28. # MSIE 7 and newer should be able to use keepalive
  29. BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement