Skip to content

Instantly share code, notes, and snippets.

View JRSalasM's full-sized avatar
🏠
Working from home

José R. Salas Montañez JRSalasM

🏠
Working from home
View GitHub Profile
@JRSalasM
JRSalasM / app.js
Created November 13, 2020 05:46 — forked from shimondoodkin/app.js
node.js express integrated with socket io, also with mysql and basic auth.
/**
* Module dependencies.
*/
var io = require('socket.io')
, sio, sio_client_on
, express = require('express')
, MemoryStore = express.session.MemoryStore
, routes = require('./routes')
, sessionStore = new MemoryStore();
@JRSalasM
JRSalasM / ip.js
Created August 5, 2020 03:34 — forked from szalishchuk/ip.js
Get local external ip address with nodejs
var
// Local ip address that we're trying to calculate
address
// Provides a few basic operating-system related utility functions (built-in)
,os = require('os')
// Network interfaces
,ifaces = os.networkInterfaces();
// Iterate over interfaces ...
@JRSalasM
JRSalasM / nginx.conf
Created June 5, 2020 15:46 — 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