Cấp bậc tác giả:

TRAINING

Lỗi triển khai ASP.NET Core lên IIS

Được viết bởi webmaster ngày 17/01/2025 lúc 10:31 AM
Lỗi triển khai ASP.NET Core lên IIS: Môi trường phát triển không được bật trong các ứng dụng đã triển khai
  • 0
  • 20

Lỗi triển khai ASP.NET Core lên IIS

Lỗi thông báo như sau:

An error occurred while processing your request.

Development Mode

Swapping to Development environment will display more detailed information about the error that occurred.
Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application.


Khi xuất bản asp net core theo mặc định, nếu biến ASPNETCORE_ENVIRONMENT không được đặt, nó sẽ hoạt động như production, hãy thử đặt ASPNETCORE_ENVIRONMENT trong các biến môi trường hoặc trong cấu hình web thành Development tạm thời để gỡ lỗi những gì đang diễn ra, nếu bạn đang sử dụng appsettings.development.json trong production, nó sẽ không được đọc nếu biến enviremoent không được đặt thành "Development".

Sửa lại như sau:
<environmentVariables>
     <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
</environmentVariables>

Nguồn bài viết: DOTNET.VN

BÌNH LUẬN BÀI VIẾT

Bài viết mới nhất

LIKE BOX

Bài viết được xem nhiều nhất

HỌC HTML