Skip to main content

2026 年 8 月 24 日

Configure TLS Connections in App Volumes Manager

You can modify the Nginx configuration file to ensure that App Volumes Manager accepts connections only from specified TLS versions.

App Volumes Manager uses SSL and TLS to communicate with servers and App Volumes agents. See Using SSL Certificates with App Volumes Manager.

Prerequisites

  • You must have administrator privileges on the machine where App Volumes Manager is installed.
  • Locate the nginx.conf file and create a backup of the file. The default location for nginx.conf is C:\Program Files (x86)\CloudVolumes\Manager\nginx\conf\.

Procedure

  1. Log in to the machine where App Volumes Manager is installed.

  2. Identify the ssl_protocols entry in the nginx.conf file and specify the TLS versions for App Volumes Manager connections.

  3. Restart the App Volumes Manager service.

Example: Configure TLS Protocol

TLS v1.2 is specified in the ssl_protocols entry in the Nginx configuration file. App Volumes Manager accepts connections from App Volumes agent using TLS v1.2.


server 
	{
			server_name 0.0.0.0;
			listen 3443 ssl;
			listen 443 ssl;
			listen [::]:443 ssl;

			ssl_certificate appvol_ca1_omnissa.com.crt;
			ssl_certificate_key appvol_ca1_omnissa.com.key;
			ssl_protocols TLSv1.2;
			ssl_session_cache builtin:1000;
			ssl_session_timeout 5m;

			root ../public;

			...
	}

此页面对您有帮助吗?

对本主题提供反馈

本主题对您有帮助吗?

请勿填写任何个人信息或机密信息。

正在生成链接…