proxy_cache_path /data/nginx/cache levels=1:2 keys_zone=cache:10m max_size=1g; server { listen 80; proxy_cache cache; location / { proxy_pass http://127.0.0.1:3000; } root /var/www/html; }