This is all I get
Status Code: 404; Not Found
Here is the environment.
- IIS 7.5
- Windows 2008 R2
- ASP.NET 5 RC and HttpPlatformHandler are installed.
...and what I've done.
1) Checked the log directory that stdoutLogFile in the web.config points to. Don't see any errors. Just a lot of these:
info: Microsoft.AspNet.Hosting.Internal.HostingEngine[1]
Request starting HTTP/1.1 GET <websiteName>
2) RDP in and can browse to the site after running web.cmd in the approot directory. Site runs fine that way. Can not access it with IIS.
3) Startup.cs/configure contains
app.UseStatusCodePages();
app.UseDeveloperExceptionPage();
app.UseDatabaseErrorPage();
4) Local publish. Copy to server. Website points to wwwroot directory. Approot sits next to it.
5) processPath points to "..\approot\web.cmd".
6) Published with DNX version dnx-clr-win-x86.1.0.0-rc1-update1. Also tried the same 64 bit version.
7) HttpPlatformHandler is installed.
8) Checked the IIS error logs and didn't see anything interesting.
What should I try next?
Update
I have these environment variables mapped.
DNX_HOME - C:\Users\<user>\.dnx
DNX_PACKAGES - C:\Users\<user>\.dnx\packages
DNX_PATH - C:\Users\<user>\.dnx\bin\dnvm.cmd
Visual C++ Redistributable for Visual Studio 2012 Update 4 is installed.