On 1/12/12 12:02 PM, Fisher, Travis wrote: > How do I utilize the "CosignAllowPublicAccess" directive in IIS7? The > only directive I've found documentation on is how to turn Cosign's > protection on or off: > > <location path="/protected-area"> > <system.webServer> > <cosign> > <protected status="on" /> > </cosign> > </system.webServer> > </location>
The cosign_schema.xml file that's in the CosignModule zip has everything, but if you don't read XML, it's not pleasant. In a folder that I've enabled for public access, the web.config file I used is <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <cosign> <protected status="allowPublicAccess" /> </cosign> </system.webServer> </configuration> -Phil ------------------------------------------------------------------------------ RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now! http://p.sf.net/sfu/rsa-sfdev2dev2 _______________________________________________ Cosign-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cosign-discuss
