本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
将 Amazon DCV 网络浏览器客户端嵌入到 iFrame
默认情况下,为了防范点击劫持攻击,Amazon DCV 不允许将网络浏览器客户端嵌入到. iFrame 但是,您可以覆盖此默认行为,以允许 Web 浏览器客户端在内运行iFrame。
有关防止点击劫持攻击的更多信息,请参阅 Content Security Policy Cheat Sheet。
要允许 Web 浏览器在内运行iFrame,您必须将 Amazon DCV 服务器配置为向 Web 浏览器客户端发送以下其他HTTP响应标头:
-
web-x-frame-options
-
web-extra-http-headers
我们建议您添加这两个标头,以确保 Web 浏览器之间的最佳兼容性。
如果通过 Amazon DCV 连接网关进行连接,则需要在网关配置中定义 x 帧选项。这是通过使用网关配置[web-resources]
部分中的local-resources-http-headers
参数来完成的。
- Windows server
-
-
打开 Windows 注册表编辑器并导航到 HKEY_ USERS /S-1-5-18/Software/ /com/nicesoftware/dcv/connec GSettings tivity/ 密钥。
-
打开web-x-frame-options参数。对于值数据,输入 "ALLOW-FROM
https://server_hostname
"
。
如果该参数不存在,则创建一个新的字符串参数并将其命名为 web-x-frame-options
。
-
打开web-extra-http-headers参数。对于值数据,输入 [("Content-Security-Policy", "frame-ancestors
https://server_hostname
")]
。
如果该参数不存在,则创建一个新的字符串参数并将其命名为 web-extra-http-headers
。
-
关闭 Windows 注册表编辑器。
-
停止并重启 Amazon DCV 服务器。
- Linux server
-
-
使用首选文本编辑器打开 /etc/dcv/dcv.conf
。
-
请在 [connectivity]
部分执行以下操作:
-
对于 web-x-frame-options
,输入 "ALLOW-FROM
https://server_hostname
"
。
-
对于 web-extra-http-headers
,输入 [("Content-Security-Policy", "frame-ancestors
https://server_hostname
")]
。
例如:
[connectivity]
web-x-frame-options="ALLOW-FROM https://my-dcv-server.com
"
web-extra-http-headers=[("Content-Security-Policy", "frame-ancestors https://my-dcv-server.com
")]
-
保存并关闭文件。
-
停止并重启 Amazon DCV 服务器。
默认情况下,大多数浏览器禁止访问某些功能,例如麦克风访问和全屏访问。要允许访问这些功能,请修改网页上的 iFrame 元素。例如,要允许访问麦克风和进入全屏模式,请按如下方式修改 iFrame 元素:
<iframe src="..." allow="microphone; fullscreen">/iframe>