Created
June 9, 2019 17:28
-
-
Save RobsonX4/66db04a2dc5217d73942856251a282d7 to your computer and use it in GitHub Desktop.
Simple configuration of nginx
This file contains hidden or 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
| 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