Skip to content

Instantly share code, notes, and snippets.

@davext
davext / allStates.JSON
Created August 26, 2021 18:11
All States In The World
[
"Badakhshan, Afghanistan",
"Badghis, Afghanistan",
"Baghlan, Afghanistan",
"Balkh, Afghanistan",
"Bamian, Afghanistan",
"Daykondi, Afghanistan",
"Farah, Afghanistan",
"Faryab, Afghanistan",
"Ghazni, Afghanistan",
@davext
davext / emailPixel
Created May 28, 2021 18:07
NGINX Reverse proxy for PM2 and Node.js Apps
. . .
location / {
proxy_pass http://localhost:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}