From f2284196e27788cf903f1894240482dcebf963fa Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Tue, 29 Oct 2024 13:16:43 -0400 Subject: [PATCH] fix nginx conf maybe --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index a29427c9..b21130d9 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,7 +3,7 @@ upstream netlify { # Make sure to add the port after the server name, because nginx won't do this # automatically, even if proxying to a https target. - server plural-marketing.netlify.app:443; + server marketing.plural.sh:443; } # Make sure nginx can resolve the netlify domain correctly @@ -21,7 +21,7 @@ server { location @netlify { # Note the "https" here, making sure the request is re-encrypted - proxy_pass https://plural-marketing.netlify.app; + proxy_pass https://marketing.plural.sh; # # Set the host header of our current request (probably www.domain.com). We want to # # forward that to the upstream, so they can properly route the request.