nginx.conf
worker_processes auto;
events { worker_connections 4096; use epoll; }
http {
gzip on; gzip_comp_level 6;
keepalive_timeout 30;
server_tokens off;
}
Кеш статики
location ~* \.(jpg|css|js|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}