Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View tirthankarkundu17's full-sized avatar
🎯
Focusing

Tirthankar Kundu tirthankarkundu17

🎯
Focusing
View GitHub Profile
@apollolm
apollolm / nginx-ssl-config
Last active January 12, 2023 14:47
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;
}