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 backend { | |
server 127.0.0.1:3000; | |
} | |
server { | |
listen 80; | |
server_name your.hostname.com; | |
proxy_set_header Host $http_host; | |
access_log /tmp/test-access.log debug; | |
rewrite_log on; |