From 21c1f3ec7b2dbf3d5515af554d6d9bb5fb78abec Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Mon, 6 Feb 2017 22:12:02 -0800 Subject: [PATCH] Updated nginx.conf --- ch13/nginx/ghost.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch13/nginx/ghost.conf b/ch13/nginx/ghost.conf index 1dadc65..8a98256 100644 --- a/ch13/nginx/ghost.conf +++ b/ch13/nginx/ghost.conf @@ -1,4 +1,4 @@ -upstream ghost { +upstream ghostapp { server ghost:2368; } @@ -29,7 +29,7 @@ server { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Protocol $scheme; - proxy_pass http://ghost; + proxy_pass http://ghostapp; } } -- 2.44.0