Skip to content

Instantly share code, notes, and snippets.

@RobsonX4
Created June 9, 2019 17:28
Show Gist options
  • Save RobsonX4/66db04a2dc5217d73942856251a282d7 to your computer and use it in GitHub Desktop.
Save RobsonX4/66db04a2dc5217d73942856251a282d7 to your computer and use it in GitHub Desktop.
Simple configuration of nginx
events {
}
http {
server {
listen 80;
server_name gerencert.app;
location / {
proxy_pass http://localhost:3000;
proxy_read_timeout 90;
proxy_redirect http://localhost:3000 https://gerencert.app;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment