Orchestrator 的大多数配置设置已移至
UiPath.Orchestrator.dll.config
:
- 连接字符串
- 应用程序设置
- NLog 配置
- Quartz 配置
- 加密密钥
概述
web.config
文件 (C:\Program Files (x86)\UiPath\Orchestrator
) 保存 IIS 使用的设置,这些设置包含在 <system.webServer>
元素中。
Learn here about <system.webServer>
.
Changing web.config
automatically restarts the IIS.
system.webServer
HTTP Compression
下方元素可使您在 Orchestrator 中单独压缩动态内容或可下载的大型 .csv
报告。系统默认启用此功能
设置为 true
。要禁用它,请将 enabled
属性的值更改为 false
。
<httpCompression>
<dynamicTypes>
<remove mimeType="text/csv" />
<add mimeType="text/csv" enabled="true" />
</dynamicTypes>
</httpCompression>
约一个月前更新