-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathWeb.config
28 lines (27 loc) · 1.41 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
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<appSettings>
<add key="regexString" value="[*$|'|<|>|(|)]"/>
<add key="ejversion" value="2.3"/>
<add key="demog2010sf1url" value="https://ejscreen.epa.gov/arcgis/rest/services/ejscreen/ejquery/MapServer/exts/EJScreen_DemogReports/Get2010DemogSF1"/>
<add key="demogacs2022url" value="https://ejscreen.epa.gov/arcgis/rest/services/ejscreen/ejquery/MapServer/exts/EJScreen_DemogReports/Get2022DemogACS"/>
<add key="ejendpointMAIN" value="https://ejscreen.epa.gov/arcgis/rest/services/ejscreen/ejscreen_v2024_with_as_cnmi_gu_vi/MapServer/exts/EJCensusReports/GetEJScreen"/>
<add key="ejendpointEXTRA" value="https://ejscreen.epa.gov/arcgis/rest/services/ejscreen/ejscreen_extra/MapServer/exts/EJCensusReports/GetEJExtra"/>
<add key="googleAnalyticID" value="UA-32633028-1"/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
</assemblies>
</compilation>
<httpRuntime requestValidationMode="2.0" />
<customErrors mode="Off"/>
<!--<customErrors mode="On" defaultRedirect="GenericErrorPage.aspx">
</customErrors>-->
</system.web>
</configuration>