You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.5 KiB
XML
29 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<!--
|
|
Configure your application settings in appsettings.json. Learn more at https://go.microsoft.com/fwlink/?LinkId=786380
|
|
-->
|
|
<system.webServer>
|
|
<handlers>
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
|
|
</handlers>
|
|
<aspNetCore processPath="dotnet" arguments=".\GCI.Maintenance.API.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00">
|
|
<environmentVariables />
|
|
</aspNetCore>
|
|
<httpProtocol>
|
|
<customHeaders>
|
|
<remove name="X-Powered-By" />
|
|
<add name="X-Content-Type-Options" value="nosniff" />
|
|
<add name="X-Frame-Options" value="DENY" />
|
|
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains; preload" />
|
|
<add name="X-Xss-Protection" value="1; mode=block" />
|
|
<add name="Referrer-Policy" value="no-referrer" />
|
|
<add name="Cache-Control" value="no-cache" />
|
|
<add name="Pragma" value="no-cache" />
|
|
<add name="X-Permitted-Cross-Domain-Policies" value="none" />
|
|
<add name="Feature-Policy" value="accelerometer 'none'; camera 'self'; geolocation 'none'; gyroscope 'none'; magnetometer 'none'; microphone 'none'; payment 'none'; usb 'none'" />
|
|
</customHeaders>
|
|
</httpProtocol>
|
|
</system.webServer>
|
|
</configuration>
|
|
<!--ProjectGuid: b5fe715f-ab99-4fa6-aec1-d3b644c76df7--> |