From: Lorin Hochstein Date: Tue, 7 Feb 2017 06:12:02 +0000 (-0800) Subject: Updated nginx.conf X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=21c1f3ec7b2dbf3d5515af554d6d9bb5fb78abec;p=ansiblebook.git Updated nginx.conf --- 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; } }