Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nuget.Server 404 on package Push

Tags:

nuget

I have setup NuGet.Server 3.3+ on Windows 10 IIS

[Working][1]

I can browse already inited packages on the server

When I try and push a known working package to my server

nuget push webgrease.1.6.0.nupkg -Source http://localhost/NuGetSrv/nuget

I get

I get 404

In fiddler the package is sent it looks to be a security issue on the server when it goes to write the file

I have use not network service / classic app pool and also tried admin account for the app pool

Also tried local c:\somedir and a \server\share

like image 751
YipYip Avatar asked Feb 20 '26 23:02

YipYip


1 Answers

I had the same problem :/

If you can get packages but not add

Make sure you have the application pool set to Integrated and not Classic and your network share will work for pushing packages

like image 144
HoopSnake Avatar answered Feb 24 '26 21:02

HoopSnake