Skip to content

Commit 32a30cf

Browse files
authored
Added demo web.config
1 parent f0df409 commit 32a30cf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

web.config

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<system.web>
4+
<!--FormsAuthentication-->
5+
<authentication mode="Forms">
6+
<forms loginUrl="LoggInn2.aspx" cookieless="UseCookies" requireSSL="true" />
7+
</authentication>
8+
<authorization>
9+
<allow users="*"/>
10+
</authorization>
11+
</system.web>
12+
13+
<system.webServer>
14+
<!--RequireAuthentication Module-->
15+
<modules>
16+
<add name="AttributeBasedFormsAuthenticationModule" type="AttributeBasedFormsAuthenticationModule" preCondition="integratedMode"/>
17+
</modules>
18+
</system.webServer>
19+
</configuration>

0 commit comments

Comments
 (0)