am trying to install GitAspx application which requires .Net Framework 4.0 on Windows Server 2008 with IIS7. After creating site in IIS Manger and selecting 4.0 Integrated pool, I have an error Page while browsing mainpage with code 404.14. It says:
HTTP Error 403.14 – Forbidden
The Web server is configured to not
list the contents of this directory.
The directory of application contains Global.asax file.
I have run aspnet_regiis from v4.0 directory with various sets of parameters, but its doesn’t help.
Selecting another pool (Classic or v2.0) doens’t help too.
Can anybody explain what am doing wrong?
Sounds like IIS is configured to accept default documents (like index.aspx, index.html, etc.) that you do not provide in your folder.
Either provide such a file or add your default document file name to the list of accepted default documents in the IIS configuration.
Here is an example of how to configure IIS.