Click here to Skip to main content
15,915,611 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
User 1106097925-May-17 0:33
User 1106097925-May-17 0:33 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Charles Programmer26-May-17 14:10
Charles Programmer26-May-17 14:10 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
ZurdoDev25-May-17 0:51
professionalZurdoDev25-May-17 0:51 
GeneralRe: Am I the only C# develeoper who HATES web config files....? PinPopular
Marc Clifton25-May-17 1:19
mvaMarc Clifton25-May-17 1:19 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
ZurdoDev25-May-17 2:12
professionalZurdoDev25-May-17 2:12 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Eytukan25-May-17 3:11
Eytukan25-May-17 3:11 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Dave Kreskowiak25-May-17 4:18
mveDave Kreskowiak25-May-17 4:18 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
raddevus25-May-17 4:26
mvaraddevus25-May-17 4:26 
Or take a look at applicationHost.config (c:\windows\system32\inetsrv\config\) (machine level IIS config)

Then, you'll feel like your web.config is small. It's all relative.
Laugh | :laugh:

Here's a snippet to help you feel better:

<configSections>
        <sectionGroup name="system.applicationHost">
            <section name="applicationPools" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="configHistory" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="customMetadata" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="listenerAdapters" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="log" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="serviceAutoStartProviders" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="sites" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="webLimits" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
        </sectionGroup>

        <sectionGroup name="system.webServer">
            <section name="asp" overrideModeDefault="Deny" />
            <section name="caching" overrideModeDefault="Allow" />
            <section name="cgi" overrideModeDefault="Deny" />
            <section name="defaultDocument" overrideModeDefault="Allow" />
            <section name="directoryBrowse" overrideModeDefault="Allow" />
            <section name="fastCgi" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="globalModules" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="handlers" overrideModeDefault="Deny" />
            <section name="httpCompression" allowDefinition="AppHostOnly" overrideModeDefault="Deny" />
            <section name="httpErrors" overrideModeDefault="Allow" />
            <section name="httpLogging" overrideModeDefault="Deny" />
            <section name="httpProtocol" overrideModeDefault="Allow" />
            <section name="httpRedirect" overrideModeDefault="Allow" />
            <section name="httpTracing" overrideModeDefault="Deny" />
            <section name="isapiFilters" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
            <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
            <section name="applicationInitialization" allowDefinition="MachineToApplication" overrideModeDefault="Allow" />
            <section name="odbcLogging" overrideModeDefault="Deny" />
XML


Dead | X| Dead | X|
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Marc Clifton25-May-17 10:29
mvaMarc Clifton25-May-17 10:29 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Sander Rossel25-May-17 2:10
professionalSander Rossel25-May-17 2:10 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
raddevus25-May-17 4:28
mvaraddevus25-May-17 4:28 
JokeRe: Am I the only C# develeoper who HATES web config files....? Pin
Daniel Pfeffer25-May-17 4:39
professionalDaniel Pfeffer25-May-17 4:39 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Sander Rossel25-May-17 5:42
professionalSander Rossel25-May-17 5:42 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Daniel Pfeffer25-May-17 7:17
professionalDaniel Pfeffer25-May-17 7:17 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Sander Rossel25-May-17 10:48
professionalSander Rossel25-May-17 10:48 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
MikeTheFid26-May-17 2:18
MikeTheFid26-May-17 2:18 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
svella26-May-17 4:01
svella26-May-17 4:01 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Kirk 1038982126-May-17 6:34
Kirk 1038982126-May-17 6:34 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Ehsan Sajjad25-May-17 3:33
professionalEhsan Sajjad25-May-17 3:33 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
TheGreatAndPowerfulOz25-May-17 4:20
TheGreatAndPowerfulOz25-May-17 4:20 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
raddevus25-May-17 4:30
mvaraddevus25-May-17 4:30 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
TheGreatAndPowerfulOz25-May-17 6:23
TheGreatAndPowerfulOz25-May-17 6:23 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Dave Kreskowiak25-May-17 4:23
mveDave Kreskowiak25-May-17 4:23 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
raddevus25-May-17 4:31
mvaraddevus25-May-17 4:31 
GeneralRe: Am I the only C# develeoper who HATES web config files....? Pin
Dave Kreskowiak25-May-17 5:00
mveDave Kreskowiak25-May-17 5:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.