Supported web.config settings in Mono ASP.NET

How to find out which web.config settings are supported by ASP.NET Mono-implementation?

In particular, it’s hard for me to get <staticContent> settings to work and wonder if this is not supported easily.

+4
source share
1 answer

I ran grep staticContent -Ri . on top of the latest mono source code, and he couldn't find anything. I conclude that it is not supported by mono itself.

In any case, staticContent belongs to the staticContent namespace, so this is a web server issue, not a mono one. Microsoft lists staticContent as supported with IIS 7.0.

EDIT . Since you are using Mono.WebServer.FastCgi , there is a file that contains all the supported options: ConfigurationManager.xml . Note that they are usually passed to the server on the command line.

But I really think that he only feels responsible for the monoserver scripts ("CGI"), and not for the static content that should be processed by the web server.

+2
source

All Articles