Skip to content

Instantly share code, notes, and snippets.

View iamangelmp's full-sized avatar
:octocat:
I may be slow to respond.

Angel Marquez iamangelmp

:octocat:
I may be slow to respond.
View GitHub Profile
/*## INSTALACIÓN DE NODE (NVM) #*/
curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh -o install_nvm.sh
bash install_nvm.sh
source ~/.profile
nvm ls-remote
nvm install v16.18.0 //# VERSIÓN DE EJECUCIÓN DEL PROYECTO
node -v
nvm use default
@iamangelmp
iamangelmp / nginx.conf
Created January 6, 2023 20:14
NGINX CONFIGURATION DEFAULT
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}