Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Web.config 3.8 KB

You have to be logged in to leave a comment. Sign In
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. http://go.microsoft.com/fwlink/?LinkId=301879
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <!-- update these with your BotId, Microsoft App Id and your Microsoft App Password-->
  9. <add key="BotId" value="YourBotId" />
  10. <add key="MicrosoftAppId" value="" />
  11. <add key="MicrosoftAppPassword" value="" />
  12. <add key="SearchName" value="Insert your search name"/>
  13. <add key="IndexName" value="Insert your index name"/>
  14. <add key="SearchKey" value="Insert your Manage query key"/>
  15. </appSettings>
  16. <!--
  17. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  18. The following attributes can be set on the <httpRuntime> tag.
  19. <system.Web>
  20. <httpRuntime targetFramework="4.6" />
  21. </system.Web>
  22. -->
  23. <system.web>
  24. <customErrors mode="Off" />
  25. <compilation debug="true" targetFramework="4.6" />
  26. <httpRuntime targetFramework="4.6" />
  27. </system.web>
  28. <system.webServer>
  29. <defaultDocument>
  30. <files>
  31. <clear />
  32. <add value="default.htm" />
  33. </files>
  34. </defaultDocument>
  35. <handlers>
  36. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  37. <remove name="OPTIONSVerbHandler" />
  38. <remove name="TRACEVerbHandler" />
  39. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  40. </handlers></system.webServer>
  41. <runtime>
  42. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  43. <dependentAssembly>
  44. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  45. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  46. </dependentAssembly>
  47. <dependentAssembly>
  48. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  49. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  50. </dependentAssembly>
  51. <dependentAssembly>
  52. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  53. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  54. </dependentAssembly>
  55. <dependentAssembly>
  56. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  57. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  58. </dependentAssembly>
  59. <dependentAssembly>
  60. <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  61. <bindingRedirect oldVersion="0.0.0.0-4.2.29.0" newVersion="4.2.29.0" />
  62. </dependentAssembly>
  63. <dependentAssembly>
  64. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  65. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  66. </dependentAssembly>
  67. <dependentAssembly>
  68. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  69. <bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
  70. </dependentAssembly>
  71. <dependentAssembly>
  72. <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  73. <bindingRedirect oldVersion="0.0.0.0-4.0.30826.1200" newVersion="4.0.30826.1200" />
  74. </dependentAssembly>
  75. <dependentAssembly>
  76. <assemblyIdentity name="Microsoft.IdentityModel.Protocol.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  77. <bindingRedirect oldVersion="0.0.0.0-1.0.3.42" newVersion="1.0.3.42" />
  78. </dependentAssembly>
  79. </assemblyBinding>
  80. </runtime>
  81. </configuration>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...