On Wed, Feb 24, 2021 at 6:01 PM Hildegard Meier <daku8...@gmx.de> wrote: [...] > Could it be possible another way to give clients of a specific vHost > different SSLCipherSuite's depending on their IP address? (cipher of first > handshake, no renegotiation)
You can work around this by setting up a separate vhost on a different port or IP and redirect the incoming traffic using the firewall/NAT tools supplied with your OS. Under Linux, something similar to the following might work: iptables -t nat -A PREROUTING -p tcp -s 1.2.3.0/24 --dport 80 -j REDIRECT --to 8080 regards, Rainer --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org