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.5 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
  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, your Microsoft App Password, and Microsoft Vision API Key-->
  9. <add key="BotId" value="YourBotId" />
  10. <add key="MicrosoftAppId" value="" />
  11. <add key="MicrosoftAppPassword" value="" />
  12. <!--
  13. This is a free trial Microsoft Bing Search key with limited QPS.
  14. Please subscribe to create your own key and try it out further.
  15. Subscription URL: https://www.microsoft.com/cognitive-services/en-us/subscriptions
  16. -->
  17. <add key="BingSearchApiKey" value="ee4e28574f514ce7b687236b01a07432" />
  18. </appSettings>
  19. <!--
  20. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  21. The following attributes can be set on the <httpRuntime> tag.
  22. <system.Web>
  23. <httpRuntime targetFramework="4.6" />
  24. </system.Web>
  25. -->
  26. <system.web>
  27. <customErrors mode="Off" />
  28. <compilation debug="true" targetFramework="4.6" />
  29. <httpRuntime targetFramework="4.6" />
  30. </system.web>
  31. <system.webServer>
  32. <defaultDocument>
  33. <files>
  34. <clear />
  35. <add value="default.htm" />
  36. </files>
  37. </defaultDocument>
  38. <handlers>
  39. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  40. <remove name="OPTIONSVerbHandler" />
  41. <remove name="TRACEVerbHandler" />
  42. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  43. </handlers></system.webServer>
  44. <runtime>
  45. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  46. <dependentAssembly>
  47. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  48. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  49. </dependentAssembly>
  50. <dependentAssembly>
  51. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  52. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  53. </dependentAssembly>
  54. <dependentAssembly>
  55. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  56. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  57. </dependentAssembly>
  58. <dependentAssembly>
  59. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  60. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  61. </dependentAssembly>
  62. <dependentAssembly>
  63. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  64. <bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
  65. </dependentAssembly>
  66. <dependentAssembly>
  67. <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  68. <bindingRedirect oldVersion="0.0.0.0-4.0.30826.1200" newVersion="4.0.30826.1200" />
  69. </dependentAssembly>
  70. <dependentAssembly>
  71. <assemblyIdentity name="Microsoft.IdentityModel.Protocol.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  72. <bindingRedirect oldVersion="0.0.0.0-1.0.3.42" newVersion="1.0.3.42" />
  73. </dependentAssembly>
  74. </assemblyBinding>
  75. </runtime>
  76. </configuration>
Tip!

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

Comments

Loading...