orchestrator
2020.10
false
Orchestrator 安装指南
- 入门指南
- 要求
- 最佳实践
- 安装
- 正在更新
- 身份服务器
- High Availability Add-On
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
备注:
Most of Orchestrator's configuration settings have been moved to UiPath.Orchestrator.dll.config:
- 连接字符串
- 应用程序设置
- NLog 配置
- Quartz 配置
- 加密密钥
概述
web.config 文件 (C:\Program Files (x86)\UiPath\Orchestrator) 保存 IIS 使用的设置,这些设置包含在 <system.webServer> 元素中。
从此处了解 <system.webServer>
更改 web.config 将自动重新启动 IIS。
System.webServer
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>