Since you are no longer hitting the site locally IIS7 intercepts your nice error view and returns the default one. In order to display yours for remote requests must be set. This brings us to the next problem.
1: 2: 3: Lockdown
The node is locked down in the IIS7 config system. and when you try to set it in your web.config you will end up seeing errors like this one:
The IIS7 config system is really hard to undertstand and is spread out all over the place. Maybe one day I'll rant about this in more detail... This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".
In order to set you have to open up applicationHost.config on your server and unlock the node or specifically set the value for the site you want. I like to unlock the node and set within the web.config of my application. I find this much clearer and more isolated then having application specific settings defined within the applicationHost.config on a specific server.
Programmatically Unlock So I Never Have To Remember How Ever Again
I can never remember where IIS7 stores all of it's config files and everytime I have to go make this change I either end up searching all over the place to find the applicationHost.config or use the IIS7 Manager to configure each site one by one. It was time for a little application that can do the dirty work for me.
One of the great things about IIS7 is that it has a managed API (Microsoft.Web.Administration) that can be used to program it. Although you must be an expert code spelunker in order to use the API it is very usefull and the little bit of code below can be used to unlock the node for all the sites on your server.
1: static void Main(string[] args) 2: { 3: string server = "localhost"; 4: if (args.Length == 1) 5: server = args[0]; 6: 7: ServerManager manager = ServerManager.OpenRemote(server); 8: 9: Configuration config = manager.GetApplicationHostConfiguration(); 10: ConfigurationSection section = config.GetSection("system.webServer/httpErrors"); 11: section.OverrideMode = OverrideMode.Allow; 12: 13: manager.CommitChanges(); 14: }If you build that sucker and run it all of your sites can set in their web.config and all your pretty error pages can get displayed for remote requests.