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.conffile and create a backup of the file. The default location fornginx.confisC:\Program Files (x86)\CloudVolumes\Manager\nginx\conf\.
Procedure
-
Log in to the machine where App Volumes Manager is installed.
-
Identify the
ssl_protocolsentry in thenginx.conffile and specify the TLS versions for App Volumes Manager connections. -
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;
...
}
Was this page helpful?