Skip to content

Commit

Permalink
fix nginx conf maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 29, 2024
1 parent 1daae0c commit f228419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit f228419

Please sign in to comment.