Nuget Server returns 403 and 404

I am trying to host nuget on my Amazon EC2 VPS and I am having problems.

My NuGet channel is at http://nuget.infinitas.ws . You will notice that http://nuget.infinitas.ws/nuget/Packages and http://nuget.infinitas.ws/Packages throw errors.

Any help with this would be greatly appreciated.

+4
source share
3 answers

You are probably running NuGet.Server in a website project. Try to launch it through the ASP.NET web application (in Visual Studio you can create it through File → New → Project → ASP.NET web application)

+1
source

Have you tried the latest version (1.5)?

Release notes include some changes related to proxy authentication:

Authentication proxy support

When using NuGet behind a proxy server that requires authentication, NuGet now asks for proxy credentials. Entering credentials allows NuGet to connect to a remote repository.

0
source

I understand that I'm a little late for the party, but I just spent a couple of hours with the same problem.

I found that switching the application pool from classic to integrated resolves the issue

0
source

All Articles