Skip to content

Instantly share code, notes, and snippets.

@cloudy9101
cloudy9101 / node-v8-max-old-space-size.md
Last active December 23, 2020 05:51 — forked from tjunghans/node-v8-max-old-space-size.md
Node V8 max-old-space-size

Node V8 Option max-old-space-size

Problem

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed — Javascript process out of memory

This error occurs when the memory allocated for the execution application is less than the required memory when run application. By default the memory limit in Node.js is 512 mb, to solve this issue you need to increasing the memory limit use command —- max-old-space-size .It can be avoid the memory limit issue.

Command line

@cloudy9101
cloudy9101 / nginx.conf
Created January 20, 2016 04:42 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048