pkmn-classic-framework/gts/Web.config
2022-02-08 03:42:24 -05:00

54 lines
1.3 KiB
XML

<?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>
<connectionStrings>
<add name="pkmnFoundationsConnectionString"
connectionString="Server=gts;Database=gts;User ID=gts;Password=gts;Pooling=true;charset=utf8;Allow User Variables=True"
providerName="MySql.Data.MySqlClient" />
</connectionStrings>
<appSettings>
<add key="AllowedProxies" value="::1,127.0.0.1,178.62.43.212,195.201.236.139,172.104.88.237" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!--
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>
-->
<membership>
<providers>
<clear/>
</providers>
</membership>
<profile>
<providers>
<clear/>
</providers>
</profile>
<roleManager enabled="false">
<providers>
<clear/>
</providers>
</roleManager>
<customErrors mode="Off" />
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<httpErrors existingResponse="PassThrough"></httpErrors>
</system.webServer>
</configuration>