Webserver
CDN
Linux HTTP/TCP Tuning for initcwnd
ip route change default via <gateway> dev eth0 initcwnd 10
consider also to increase net.ipv4.tcp_wmem[1]
Misc
Prevent out of ports on high traffic webserver due to FIN_WAIT and other issues:
# Ensure to maximize available ports cat /proc/sys/net/ipv4/ip_local_port_range echo 1024 65535 >/proc/sys/net/ipv4/ip_local_port_range
and set sockets to reuse
# sysctl -p net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_tw_recycle = 1
gatling - HTTP stress testing
[Squid - Quick Test Proxy Setup](blog/How to Quickly Set up Squid)
Wordpress - Hardening Scanner wpscan
Determine redirect URLs
curl -Ls -w %{url_effective} -o /dev/null <URL>