У меня есть Web.config
файл:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\HamrahFarda.Marketing.AdminService.dll" stdoutLogEnabled="true" stdoutLogFile=".\" requestTimeout="05:00:00" />
</system.webServer>
</configuration>
Как видите, я добавил атрибут requestTimeout
и установил его на 5 часов. Но через 15 секунд я все еще получаю 504 Gateway Timeout
ошибку.
Что может быть не так?