From da4ea090a2151a02428ba68d2743b0fb2ae5a583 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sun, 14 Aug 2022 16:16:46 +0100 Subject: [PATCH] change upstream from hunchentoot to hot-line. I was getting errors with the previous nginx config. --- conf/hot-line-prod.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/hot-line-prod.conf b/conf/hot-line-prod.conf index 46d791c..55cecec 100644 --- a/conf/hot-line-prod.conf +++ b/conf/hot-line-prod.conf @@ -1,4 +1,4 @@ -upstream hunchentoot { +upstream hot-line { server 127.0.0.1:3002; } @@ -24,7 +24,7 @@ server { # if the requested file does not exist then # proxy to the hunchentoot server cluster if (!-f $request_filename) { - proxy_pass http://hunchentoot; + proxy_pass http://hot-line; } } } \ No newline at end of file