orchestrator
2023.10
false
- Getting Started
- Requirements
- Best Practices
- Installation
- Updating
- Identity Server
- Troubleshooting startup errors

Orchestrator installation guide
Last updated Mar 24, 2026
Web.Config
Note:
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>
<httpCompression>
<dynamicTypes>
<remove mimeType="text/csv" />
<add mimeType="text/csv" enabled="true" />
</dynamicTypes>
</httpCompression>