mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
21 lines
711 B
XML
21 lines
711 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
|
|
<!--
|
|
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
|
|
-->
|
|
|
|
<system.webServer>
|
|
<handlers>
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
|
|
</handlers>
|
|
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
|
|
</system.webServer>
|
|
<appSettings>
|
|
<add key="vs:EnableBrowserLink" value="true"/>
|
|
</appSettings>
|
|
<system.web>
|
|
<compilation debug="true"></compilation>
|
|
</system.web>
|
|
</configuration>
|