Created
April 15, 2018 15:06
-
-
Save annibuliful/6ee13da9737d6558a6dc5a82f2c98b76 to your computer and use it in GitHub Desktop.
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
| map $sent_http_content_type $expires { | |
| "text/html" epoch; | |
| "text/html; charset=utf-8" epoch; | |
| default off; | |
| } | |
| server { | |
| listen 80; # the port nginx is listening on | |
| server_name your-domain; # setup your domain here | |
| gzip on; | |
| gzip_types text/plain application/xml text/css application/javascript; | |
| gzip_min_length 1000; | |
| location / { | |
| expires $expires; | |
| proxy_redirect off; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_set_header X-Forwarded-Proto $scheme; | |
| proxy_read_timeout 1m; | |
| proxy_connect_timeout 1m; | |
| proxy_pass http://127.0.0.1:3000; # set the adress of the Node.js instance here | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment