Networking Bundle
Three cheatsheets covering the networking tools and configuration every engineer reaches for.
What's Included
- Nginx Cheatsheet — Server blocks, reverse proxy, load balancing, SSL/TLS, rate limiting, caching
- SSH Cheatsheet — Key management, config, tunneling, agent forwarding, jump hosts
- Network Tools Cheatsheet — curl, netstat, ss, tcpdump, nmap, dig, iperf, and more
Format
- PDF (print-ready, A4)
- Instant download
Price
$9.00
Sample Snippet — Nginx Reverse Proxy Configuration
server {
listen 443 ssl http2;
server_name api.example.com;
ssl_certificate /etc/letsencrypt/live/api.example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/api.example.com/privkey.pem;
location / {
proxy_pass http://upstream:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Who This Is For
- Backend and DevOps engineers configuring reverse proxies, load balancers, and secure SSH access
- System administrators managing network troubleshooting and performance analysis
- Anyone deploying web applications who needs to understand TLS termination, SSH tunneling, and network diagnostics