I have a website and various clients(Web and Mobile) access it. I have used the following CipherSuite
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
But this CipherSuite accepts Low ciphers and SSLv2 which can lead to security issues. So i used the following CipherSuite
SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SSLProtocol all -SSLv2
But now how can i ensure that my clients will be able to access the website. Is there some other way to maintain the security of the server?