<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <compilation targetFramework="4.7.2"/>
    <httpRuntime targetFramework="4.7.2"/>
	<webServices>
		<protocols>
			<add name="HttpPost"/>
		</protocols>
	</webServices>
	<sessionState timeout="15" mode="InProc" /> <!-- this is in minutes, and should be a little longer (or the same as) the timeout defined in the internal server's Web.config app-000.000 setting -->
  </system.web>
  <system.webServer>
    <httpProtocol allowKeepAlive="true" />
    <defaultDocument enabled="true">
      <files>
        <clear/>
        <add value="Index.aspx"/>
      </files>
    </defaultDocument>
    <directoryBrowse enabled="false"/>
  </system.webServer>
  <appSettings>
    <add key="appname" value="DocuPro" />
    <add key="webservice" value="http://localhost/Mpowered/Dotnet/DocuPro/DocuProDevelWS/DocuPro.asmx" />

	<add key="debugglobal" value="N" /> <!-- Y = turn on debugging for ALL users -->

	<!-- FOR INITIAL CONFIGURATION: -->
	<!-- For sure: you will want to search for and replace [BANNER-HREF] and [BANNER-IMG] in the settings below -->

	<add key="app-000.010" value="&lt;a href=&quot;[BANNER-HREF]&quot; target=&quot;_blank&quot;>&lt;img src=&quot;[BANNER-IMG]&quot; style=&quot;max-height:auto;width:100%;margin-bottom:7px&quot;>&lt;/a>" /> <!-- 530x54 seems to work nicely -->
	<add key="app-000.050" value="N" /> <!-- Y = offline, message to be displayed is in app-000.055 below -->
	<add key="app-000.055" value="&lt;div class=&quot;panel panel-info&quot;>&lt;div class=&quot;panel-heading&quot;>Application Portal Offline&lt;/div>&lt;div class=&quot;panel-body&quot;>The application portal is undergoing routine maintenance, and will be offline until 9am PST, Friday May 20, 2021.&lt;/div>&lt;/div>" />
	<add key="app-000.070" value="You were successfully signed out." />  <!-- displayed as info when the user clicks the Home/Sign Out button -->
	<add key="app-000.080" value="Your web session expired, and you were redirected to the start page." />  <!-- displayed as info when the user's current session expired (usually 15 minutes) -->
  </appSettings>
</configuration>
