jakubgarfield / Bonobo-Git-Server

Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info.
http://bonobogitserver.com
MIT License
1.81k stars 603 forks source link

HTTP Error 500.24 - Internal Server Error #787

Closed pawanadubey closed 3 years ago

pawanadubey commented 6 years ago

Hi all, I followed the document for installing the application, I have deployed the application in C:\inetpub\wwwroot\Bonobo.Git.Server. Given IIS User all the permission, disabled the authentication. I even tried searching on internet but did not get anything. I get below error when I browse: Error Summary: HTTP Error 500.24 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

Detailed Error Information: Module : ConfigurationValidationModule Notification: BeginRequest Handler: Static file Error Code: 0x80070032 Requested URL: http://localhost:8080/Bonobo.Git.Server Physical Path: C:\inetpub\wwwroot\Bonobo.Git.Server Logon Method: Not yet determined Logon User: Not yet determined

Most likely cause: •system.web/identity@impersonate is set to true.

And when I disable ASP.NET Impersonate in Authentication, I get below error:

Runtime Error : Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.

Please let me know how can I get this up and running.

I'm using windows server 2008 R2, that is in domain.

braibaud commented 6 years ago

Hi,

I had the same issue and fixed it by adding

<validation validateIntegratedModeConfiguration="false" />

under the <system.webServer> node in the web.config file.

Ben

pawanadubey commented 3 years ago

@braibaud Thanks for the input. It did work 👍