orchestrator
2021.10
false
- Getting Started
- Requirements
- Best Practices
- Installation
- Updating
- Identity Server
- Troubleshooting startup errors
Web.Config
OUT OF SUPPORT
Orchestrator Installation Guide
Last updated Oct 31, 2024
Web.Config
Note:
Most of Orchestrator's configuration settings have been moved to UiPath.Orchestrator.dll.config:
- connection strings
- appSettings
- NLog configuration
- Quartz configuration
- the encryption key
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.
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>