So, I have the following in the web.config
<authentication mode="Windows"/>
<authorization>
<allow users="domain\johndoe" />
<!--Deny All Others-->
<deny users="*" />
</authorization>
But, what I want to do, is only allow users in a specific GAL group on our AD server and that doesn't seem to work with these settings.
Is there an authentication mode that will? Everything I find referencing AD wants to use forms! Which I do not want.