Subversion Repositories oidplus

Rev

Rev 351 | Rev 476 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 351 Rev 448
1
<?xml version="1.0" encoding="utf-8" ?>
1
<?xml version="1.0" encoding="utf-8" ?>
2
<configuration>
2
<configuration>
3
 
3
 
4
<!-- This config file is for Microsoft Internet Information Services -->
4
<!-- This config file is for Microsoft Internet Information Services -->
5
<!-- It is the replacement for the .htaccess files to protect directories from being accessed through HTTP -->
5
<!-- It is the replacement for the .htaccess files to protect directories from being accessed through HTTP -->
6
 
6
 
7
<system.webServer>
7
<system.webServer>
8
	<directoryBrowse enabled="false" />
8
	<directoryBrowse enabled="false" />
9
 
9
 
10
	<staticContent>
10
	<staticContent>
11
		<mimeMap fileExtension=".nroff" mimeType="text/plain" />
11
		<mimeMap fileExtension=".nroff" mimeType="text/plain" />
12
	</staticContent>
12
	</staticContent>
13
 
13
 
14
	<security>
14
	<security>
15
		<authentication>
15
		<authentication>
16
			<!-- This is required because the IUSR user account can't log into the Windows Error Log for some reasons -->
16
			<!-- This is required because the IUSR user account can't log into the Windows Error Log for some reasons -->
17
			<!-- see https://stackoverflow.com/a/16938687/488539 -->
17
			<!-- see https://stackoverflow.com/a/16938687/488539 -->
18
			<anonymousAuthentication userName="" />
18
			<anonymousAuthentication userName="" />
19
		</authentication>
19
		</authentication>
20
	</security>
20
	</security>
21
</system.webServer>
21
</system.webServer>
22
 
22
 
23
<location path="userdata">
23
<location path="userdata">
24
	<system.webServer>
24
	<system.webServer>
25
		<security>
25
		<security>
26
			<authentication>
26
			<authentication>
27
				<!--
27
				<!--
28
				To "unlock" this section, run this command:
28
				To "unlock" this section, run this command:
29
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
29
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
30
				-->
30
				-->
31
				<anonymousAuthentication enabled="false" />
31
				<anonymousAuthentication enabled="false" />
32
			</authentication>
32
			</authentication>
33
		</security>
33
		</security>
34
	</system.webServer>
34
	</system.webServer>
35
</location>
35
</location>
36
 
36
 
37
<location path="dev">
37
<location path="dev">
38
	<system.webServer>
38
	<system.webServer>
39
		<security>
39
		<security>
40
			<authentication>
40
			<authentication>
41
				<!--
41
				<!--
42
				To "unlock" this section, run this command:
42
				To "unlock" this section, run this command:
43
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
43
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
44
				-->
44
				-->
45
				<anonymousAuthentication enabled="false" />
45
				<anonymousAuthentication enabled="false" />
46
			</authentication>
46
			</authentication>
47
		</security>
47
		</security>
48
	</system.webServer>
48
	</system.webServer>
49
</location>
49
</location>
50
 
50
 
51
<location path="includes">
51
<location path="includes">
52
	<system.webServer>
52
	<system.webServer>
53
		<security>
53
		<security>
54
			<authentication>
54
			<authentication>
55
				<!--
55
				<!--
56
				To "unlock" this section, run this command:
56
				To "unlock" this section, run this command:
57
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
57
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
58
				-->
58
				-->
59
				<anonymousAuthentication enabled="false" />
59
				<anonymousAuthentication enabled="false" />
60
			</authentication>
60
			</authentication>
61
		</security>
61
		</security>
62
	</system.webServer>
62
	</system.webServer>
63
</location>
63
</location>
64
 
64
 
-
 
65
<location path="setup/includes">
-
 
66
	<system.webServer>
-
 
67
		<security>
-
 
68
			<authentication>
-
 
69
				<!--
-
 
70
				To "unlock" this section, run this command:
-
 
71
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
-
 
72
				-->
-
 
73
				<anonymousAuthentication enabled="false" />
-
 
74
			</authentication>
-
 
75
		</security>
-
 
76
	</system.webServer>
-
 
77
</location>
-
 
78
 
65
<location path="plugins/publicPages/100_whois/whois/cli">
79
<location path="plugins/publicPages/100_whois/whois/cli">
66
	<system.webServer>
80
	<system.webServer>
67
		<security>
81
		<security>
68
			<authentication>
82
			<authentication>
69
				<!--
83
				<!--
70
				To "unlock" this section, run this command:
84
				To "unlock" this section, run this command:
71
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
85
				%windir%\system32\inetsrv\appcmd.exe unlock config -section:system.webServer/security/authentication/anonymousAuthentication
72
				-->
86
				-->
73
				<anonymousAuthentication enabled="false" />
87
				<anonymousAuthentication enabled="false" />
74
			</authentication>
88
			</authentication>
75
		</security>
89
		</security>
76
	</system.webServer>
90
	</system.webServer>
77
</location>
91
</location>
78
 
92
 
79
</configuration>
93
</configuration>