Skip to main content

iis

Private Nuget Server responds with (405) Method Not Allowed while pushing or deleting a package
·70 words·1 min
dotnet iis
So you’ve deployed your own private NuGet server to IIS but you get this annoying exception trying to push packages: (405) Method Not Allowed Well as stated in many web pages removing WebDAVModule does fix the issue, but be sure you add the configuration in the right section! (not in the elmah section) or the fix wont work!
Running Apache behind an IIS server. .Net Solution
·266 words·2 mins
dotnet apache iis
Yesterday I had the challenge to redirect – rewrite an url from my public IIS7 server to an internal Apache server. For instance a request to http://www.mysite.com/app handled by IIS should be redirected (using a reverse proxy) to ; http://127.0.0.1:8080/app where the internal Apache is listening. Trying to configure it with the new Application Request Routing (ARR) module from Microsoft was a disappointing task. Once installed, my server stopped serving pages, and I could not find a way to make it work.