Skip to content

Instantly share code, notes, and snippets.

View UTCWebDev's full-sized avatar

UTC Webmaster UTCWebDev

View GitHub Profile
@UTCWebDev
UTCWebDev / map.geojson
Last active July 28, 2016 20:50 — forked from githubteacher/bus-map.geojson
Map of the StartupBus EU locations and city stops
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UTCWebDev
UTCWebDev / nginx-ssl-config
Created April 16, 2017 21:51 — forked from apollolm/nginx-ssl-config
Nginx Configuration with multiple port apps on same domain, with SSL.
# the IP(s) on which your node server is running. I chose port 3000.
upstream app_geoforce {
server 127.0.0.1:3000;
}
upstream app_pcodes{
server 127.0.0.1:3001;
}