Skip to content

Instantly share code, notes, and snippets.

@fardeen9983
Created April 17, 2022 11:15
Show Gist options
  • Save fardeen9983/8b0a8ce1956220dea4976bf03ce291e2 to your computer and use it in GitHub Desktop.
Save fardeen9983/8b0a8ce1956220dea4976bf03ce291e2 to your computer and use it in GitHub Desktop.
Node Github Actions Nginx Conf
upstream nodejs_upstream{
server 127.0.0.1:3000;
keepalive 64;
}
server {
listen 80;
server_name tutorial.codepanthers.com;
location / {
proxy_pass http://nodejs_upstream;
proxy_redirect off;
proxy_read_timeout 240s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment