-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
112 lines (112 loc) · 6.51 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="TheInternetBuzz.Version.Major" value="212" />
<add key="TheInternetBuzz.Host" value="www.theinternetbuzz.com" />
<add key="TheInternetBuzz.Host.URL" value="http://www.theinternetbuzz.com" />
<add key="TheInternetBuzz.Categories.Cache.Expiration" value="180" />
<add key="TheInternetBuzz.Connector.UserAgent" value="TheInternetBuzz/1.0" />
<add key="TheInternetBuzz.Connector.Referer" value="http://www.theinternetbuzz.com/" />
<add key="TheInternetBuzz.Explanation.Cache.Expiration" value="1440" />
<add key="TheInternetBuzz.Search.DefaultQuery" value="Hacking" />
<add key="TheInternetBuzz.Search.CountPerPagePerProvider" value="8" />
<add key="TheInternetBuzz.Search.MaxNumberOfPages" value="8" />
<add key="TheInternetBuzz.Search.URL.Display.Length" value="80" />
<add key="TheInternetBuzz.Search.Cache.Expiration" value="30" />
<add key="TheInternetBuzz.Trends.Reload.OnTimer" value="true" />
<add key="TheInternetBuzz.Trends.Reload.Interval" value="300" />
<add key="TheInternetBuzz.Trends.PreloadData" value="false" />
<add key="TheInternetBuzz.Suggestions.Cache.Expiration" value="1440" />
<add key="TheInternetBuzz.Topic.Cache.Expiration" value="360" />
<add key="TheInternetBuzz.Video.Search.Cache.Expiration" value="300" />
<add key="Twitter.ClientName" value="theinternetbuzz.com/1.0 ([email protected])" />
<add key="Twitter.URL" value="http://www.theinternetbuzz.com/" />
<add key="Twitter.Version" value="1.0" />
<add key="Twitter.CurrentTrends.Queue.Size" value="10" />
<add key="YouTube.Feeds.RecentlyFeatured.MaxResults" value="30" />
<add key="YouTube.Feeds.TopRated.MaxResults" value="3" />
<add key="YouTube.Feeds.TopFavorites.MaxResults" value="3" />
<add key="YouTube.Feeds.MostViewed.MaxResults" value="6" />
<add key="YouTube.Feeds.MostPopular.MaxResults" value="6" />
<add key="YouTube.Feeds.MostDiscussed.MaxResults" value="3" />
<add key="YouTube.Feeds.MostResponded.MaxResults" value="3" />
<add key="YouTube.Search.MaxResults" value="30" />
</appSettings>
<connectionStrings/>
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8" />
<compilation debug="true" targetFramework="4.0">
</compilation>
<httpRuntime enableVersionHeader="false" />
<authentication mode="None" />
<identity impersonate="false" />
<sessionState mode="Off" />
<customErrors mode="Off" />
<pages enableViewState="false" validateRequest="false" enableSessionState="false" asyncTimeout="60" autoEventWireup="true" controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
<controls>
<add src="~/controls/amazon/AdsControl.ascx" tagPrefix="amazon" tagName="ads" />
<add src="~/controls/amazon/MP3Control.ascx" tagPrefix="amazon" tagName="mp3" />
<add src="~/controls/google/AdsControl.ascx" tagPrefix="google" tagName="ads" />
<add src="~/controls/sedo/TrackerControl.ascx" tagPrefix="sedo" tagName="tracker" />
<add src="~/controls/theinternetbuzz/CategoryListControl.ascx" tagPrefix="theinternetbuzz" tagName="category" />
<add src="~/controls/theinternetbuzz/BuzzListControl.ascx" tagPrefix="theinternetbuzz" tagName="buzzlist" />
<add src="~/controls/theinternetbuzz/CloudControl.ascx" tagPrefix="theinternetbuzz" tagName="cloud" />
<add src="~/controls/theinternetbuzz/FooterControl.ascx" tagPrefix="theinternetbuzz" tagName="footer" />
<add src="~/controls/theinternetbuzz/HtmlHeadControl.ascx" tagPrefix="theinternetbuzz" tagName="head" />
<add src="~/controls/theinternetbuzz/NavigationControl.ascx" tagPrefix="theinternetbuzz" tagName="navigation" />
<add src="~/controls/theinternetbuzz/HtmlPostBodyControl.ascx" tagPrefix="theinternetbuzz" tagName="postbody" />
<add src="~/controls/theinternetbuzz/SearchResultsControl.ascx" tagPrefix="theinternetbuzz" tagName="results" />
<add src="~/controls/theinternetbuzz/ShareThisControl.ascx" tagPrefix="theinternetbuzz" tagName="share" />
<add src="~/controls/theinternetbuzz/SuggestionsControl.ascx" tagPrefix="theinternetbuzz" tagName="suggestions" />
<add src="~/controls/theinternetbuzz/TilesControl.ascx" tagPrefix="theinternetbuzz" tagName="tiles" />
<add src="~/controls/theinternetbuzz/TitleControl.ascx" tagPrefix="theinternetbuzz" tagName="title" />
<add src="~/controls/theinternetbuzz/ToolbarControl.ascx" tagPrefix="theinternetbuzz" tagName="toolbar" />
<add src="~/controls/theinternetbuzz/TopicControl.ascx" tagPrefix="theinternetbuzz" tagName="topic" />
<add src="~/controls/theinternetbuzz/TrackControl.ascx" tagPrefix="theinternetbuzz" tagName="track" />
<add src="~/controls/theinternetbuzz/VideoControl.ascx" tagPrefix="theinternetbuzz" tagName="video" />
<add src="~/controls/whatthetrend/ExplanationControl.ascx" tagPrefix="whatthetrend" tagName="explanation" />
</controls>
</pages>
<trace enabled="false" requestLimit="10" localOnly="false" />
</system.web>
<system.net>
<connectionManagement>
<add address="*" maxconnection="100" />
</connectionManagement>
</system.net>
<!--
The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS.
-->
<system.webServer>
<handlers>
<add name="CacheManager" verb="*" path="CacheManager.axd" type="AspAlliance.CacheManager.CacheManagerPageFactory,AspAlliance.CacheManager" />
</handlers>
<modules runAllManagedModulesForAllRequests="true">
<remove name="Session" />
<remove name="WindowsAuthentication" />
<remove name="PassportAuthentication" />
<remove name="AnonymousIdentification" />
<remove name="UrlAuthorization" />
<remove name="FileAuthorization" />
<add name="SecurityModule" type="TheInternetBuzz.Web.Modules.SecurityModule" />
<add name="UrlRewriter" type="TheInternetBuzz.Web.Modules.URLRewriteModule" />
</modules>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="45.00:00:00" />
</staticContent>
<urlCompression doStaticCompression="true" doDynamicCompression="true" dynamicCompressionBeforeCache="true" />
<httpProtocol>
<customHeaders>
<clear/>
</customHeaders>
<redirectHeaders>
<clear/>
</redirectHeaders>
</httpProtocol>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>