Skip to content

Instantly share code, notes, and snippets.

View jithurjacob's full-sized avatar
🌴
On vacation

Jithu R Jacob jithurjacob

🌴
On vacation
View GitHub Profile
@jithurjacob
jithurjacob / nginx-ssl-config
Created September 12, 2018 13:26 — 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;
}