[ASP.NET] ASP.Net core 6 Kestrel 기본 호스팅 주소 및 포트 변경하기

방법 1. appsettings.json 파일에 아래와 같이 Kestrel 설정을 추가 시킨다.

  "Kestrel": {
    "Endpoints": {
      "Http": {
        "Url": "http://localhost:5000"
      },
      "Https": {
        "Url": "https://localhost:5001"
      }
    }
  }

 

방법2. Program.cs 파일에서 직접 주소를 입력한다.

await app.RunAsync("http://localhost:5000");

 

더 자세한 내용은 아래 마이크로소프트 문서 참고.

https://learn.microsoft.com/ko-kr/aspnet/core/fundamentals/servers/kestrel/endpoints?view=aspnetcore-7.0 

 

ASP.NET Core Kestrel 웹 서버의 엔드포인트 구성

ASP.NET Core의 플랫폼 간 웹 서버인 Kestrel을 사용하여 엔드포인트를 구성하는 방법에 관해 알아봅니다.

learn.microsoft.com