Created
April 17, 2022 11:15
-
-
Save fardeen9983/8b0a8ce1956220dea4976bf03ce291e2 to your computer and use it in GitHub Desktop.
Node Github Actions Nginx Conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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