From cf7729225e4c9eecc61c63e7cc1229dbabddb4ef Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Sat, 30 May 2020 06:48:33 -0500 Subject: [PATCH] Linux topic example consistency (#18568) --- aspnetcore/host-and-deploy/linux-nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/host-and-deploy/linux-nginx/nginx.conf b/aspnetcore/host-and-deploy/linux-nginx/nginx.conf index 4f94c4b910..3ef3972045 100644 --- a/aspnetcore/host-and-deploy/linux-nginx/nginx.conf +++ b/aspnetcore/host-and-deploy/linux-nginx/nginx.conf @@ -7,7 +7,7 @@ http { keepalive_timeout 29; # Adjust to the lowest possible value that makes sense for your use case. client_body_timeout 10; client_header_timeout 10; send_timeout 10; - upstream hellomvc{ + upstream helloapp{ server localhost:5000; } @@ -37,7 +37,7 @@ http { #Redirects all traffic location / { - proxy_pass http://hellomvc; + proxy_pass http://helloapp; limit_req zone=one burst=10 nodelay; } }