orchestrator
2022.10
false
- 入门指南
- 要求
- 最佳实践
- 安装
- 正在更新
- 身份服务器
- 对启动错误进行故障排除
web.config
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
Orchestrator 安装指南
Last updated 2024年10月3日
web.config
web.config
文件 (C:\Program Files (x86)\UiPath\Orchestrator
) 保存 IIS 使用的设置,这些设置包含在 <system.webServer>
元素中。
在此处 了解
<system.webServer>
更改
web.config
将自动重新启动 IIS。
HTTP 压缩
下方元素可使您在 Orchestrator 中单独压缩动态内容或可下载的大型
.csv
报告。系统默认启用此功能
设置为
true
。要禁用它,请将 enabled
属性的值更改为 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>