-
Notifications
You must be signed in to change notification settings - Fork 10
/
web.config
46 lines (44 loc) · 1.91 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<!--
Web.config file for ru.org.openam.iis.site.sample.
The settings that can be used in this file are documented at
http://www.mono-project.com/Config_system.web and
http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
-->
<configuration>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5.1" />
</system.Web>
-->
<system.web>
<compilation defaultLanguage="C#" debug="true" targetFramework="4.5.1">
<assemblies/>
</compilation>
<customErrors mode="RemoteOnly"/>
<authentication mode="None"/>
<authorization>
<allow users="*"/>
</authorization>
<httpHandlers/>
<httpModules>
<add name="OpenAM" type="ru.org.openam.iis.OpenAMHttpModule"/>
</httpModules>
<trace enabled="false" localOnly="true" pageOutput="false" requestLimit="10" traceMode="SortByTime"/>
<sessionState mode="InProc" cookieless="false" timeout="20"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>
<appSettings>
<add key="com.sun.identity.agents.config.naming.url" value="https://support.openam.org.ru/auth/namingservice"/>
<add key="com.sun.identity.agents.config.organization.name" value="/"/>
<add key="com.sun.identity.agents.app.username" value="test.domain.com"/>
<add key="com.iplanet.am.service.password" value="ws.apiws.api"/>
<!--<add key="com.sun.identity.agents.config.key" value="d2ytcg81um"/>-->
<add key="com.sun.identity.agents.config.receive.timeout" value="0"/>
<add key="com.sun.identity.agents.config.connect.timeout" value="0"/>
<add key="com.sun.identity.agents.config.local.log.path" value="/tmp"/>
</appSettings>
</configuration>