From 7c1481e2aebeca59f39c7417f0b3d31935b6909b Mon Sep 17 00:00:00 2001 From: Manevolent Date: Tue, 25 Apr 2023 17:17:06 -0600 Subject: [PATCH] Update nginx.conf --- proxy-frontend/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy-frontend/nginx.conf b/proxy-frontend/nginx.conf index 1e67bbf..f77a8b9 100644 --- a/proxy-frontend/nginx.conf +++ b/proxy-frontend/nginx.conf @@ -17,7 +17,7 @@ http { tcp_nopush on; server_names_hash_bucket_size 128; - upstream matrix_nurd { + upstream watch_mommys_plumbing { server 172.31.206.1:80; } @@ -25,7 +25,7 @@ http { listen 80; server_name watch.mommys.plumbing; location / { - proxy_pass http://matrix_nurd; + proxy_pass http://watch_mommys_plumbing; } } }