當我嘗試瀏覽到我的IIS站點時,出現內部服務器錯誤,但沒有有用的錯誤消息。我注意到的一件事是,當我訪問一個IIS模塊時,我得到了上述錯誤或類似的錯誤。我的web.config是非常基本的,是如下:無法檢索日誌記錄設置 - IIS web.config .Net Core 1.1
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\MyWebsite.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>
當我註釋掉:
<aspNetCore processPath="dotnet" arguments=".\MyWebsite.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
我的IIS模塊負載,但我仍然得到內部服務器錯誤。
最初,我想這可能是我安裝.Net Core 1.1運行時的錯誤,但是當我從命令行運行命令dotnet MyWebsite.dll時,我的網站運行良好。
任何想法/幫助表示感謝,謝謝!