nginx.conf Tuning
worker_processes auto;
events { worker_connections 4096; use epoll; multi_accept on; }
http { gzip on; keepalive_timeout 30; server_tokens off; }
Static Cache
location ~* \.(jpg|css|js|woff2)$ {
expires 1y; add_header Cache-Control "public, immutable";
}