From f82c48741699529bff84b53d2513c12e9b6c2df8 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Wed, 22 Nov 2017 11:45:27 -0500 Subject: [PATCH] Use nginx as the web server, frontending node. --- nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nginx.conf b/nginx.conf index 7b41907..7b4bfae 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,9 +1,9 @@ #blootstrap nginx conf server { - listen 80; - - + listen 80 default_server; + server_name _; + location / { proxy_pass http://127.0.0.1:6699/; proxy_set_header Host $host;