MVC 6 Beta 8アプリを公開しようとしています。 Azureに公開することはできましたが、ASPHostPortalに公開しようとすると500エラーになります。IIS上でMVC 6 Beta 8アプリケーションを実行しています
私はローカルのIISにアプリケーションを公開しようとしましたが失敗しました。まず、私はHttpPlatformHandlerをインストールする必要があることを理解しました(そうでなければ、IISはweb.configをロードできませんでした)。しかしその後も、私は502.3エラーが発生しています。
HTTP Error 502.3 - Bad Gateway
There was a connection error while trying to route the request.
はまた、イベントログに私が説明なしでHttpPlatformHandlerからのエラー1000年を見ることができます。しかし、 "プロセス '0'は開始できませんでした。ポート= 13679、エラーコード= '-2147024894'
stdout.logが作成されましたが空です。ここで
は私のweb.configファイルです:
私はここから行くん<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified"/>
</handlers>
<httpPlatform processPath="..\approot\web.cmd" arguments="" stdoutLogEnabled="true" stdoutLogFile="stdout.log" startupTimeLimit="3600"></httpPlatform>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true" />
</system.webServer>
<system.web>
<customErrors mode="Off" />
<compilation debug="true" />
</system.web>
</configuration>
?
http://docs.asp.net/en/1.0.0-beta8/publishing/iis.html –
もちろん、私はこれをすべて行いましたが、このエラーがあります。この記事では、MVC6 Beta 8に含まれていないWebListenerについてはまだ説明しています。この記事はBeta 8には更新されていません。 –
[Question and issues](https://github.com/)のスレッドにAzure/IIS関連のコメントがありますaspnet/Hosting/issues/364)を参照してください。彼らは助けるかもしれない –