Technotes

Technotes for future me

Webserver

CDN

Misc

  • Setting up HAProxy

  • 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>
    
  • Favicon Standards

  • Favicon Generator / Checker

Last updated on 31 Jan 2021
Published on 25 Dec 2019
Edit on GitHub