I have run into an issue where I need to disable DH cipher suites or change the cipher suite priority only to certain IP addresses in Apache 2.4.7.
Reason being is that a system running on JDK7 needs to connect to my web service which requires DH keys to be 1024-bit. Lowering DH key size is not an option as I don't want to open us up to the logjam vulnerability.
Ideally I would like to prioritize AES256-SHA or disable EC cipher suites only in Apache 2.4.7 when serving requests to certain IP addresses.
Thank you.