Hello Captain56022,
Thanks for sharing the context. Based on the settings you shared and what I saw when researching the internet, this could be what’s happening:
Your application pool seems to be entering Rapid-Fail Protection mode because the worker process (w3wp.exe) may be crashing repeatedly. The default for IIS is 5 failures in 5 minutes.
Even if the pool still shows “Running” in the GUI, once those failures trigger the protection IIS will stop serving requests, so the site becomes effectively unreachable.
If I were you, here’s what I’d try to check first (just to confirm or rule out this cause):
- Look into Windows Event Viewer (System and Application logs) around the time the outage happened, check for “worker process terminated unexpectedly,” “fatal communication error,” or “application pool … disabled due to a series of failures.” That’ll show whether Rapid-Fail Protection was triggered.
- If you find such failures, you could temporarily disable Rapid-Fail Protection (for testing only) to see if the site stays up, but this is only a diagnostic step, not a fix.
- Ultimately you need to identify what’s causing the crashes (bad code, config, dependencies, module load issues, identity problems, etc.) and fix that root problem.
Hope this helps.