Most of Orchestrator's configuration settings have been moved to
UiPath.Orchestrator.dll.config
:
- connection strings
- appSettings
- NLog configuration
- the encryption key
Overview
The web.config
file (C:\Program Files (x86)\UiPath\Orchestrator
) holds settings used by the IIS, which are contained in the <system.webServer>
element.
Learn here about <system.webServer>
.
Changing web.config
automatically restarts the IIS.
system.webServer
HTTP Compression
The element below enables the compression of dynamic content, respectively large downloadable .csv
reports, in Orchestrator. By default, this feature is enabled
set to true
. To disable it change the value of the enabled
attribute to false
.
<httpCompression>
<dynamicTypes>
<remove mimeType="text/csv" />
<add mimeType="text/csv" enabled="true" />
</dynamicTypes>
</httpCompression>
Updated 4 months ago