The ssl_protocols
parameter specifies the SSL protocols to use for nginx (e.g. TLSv1.2 TLSv1.3). They must be separated by spaces.
The default value for ssl_protocols
is an empty string. When set to an empty string, Nginx will use its default protocols: TLSv1.2 TLSv1.3
.
To set the ssl_protocols
parameter, use the following command:
$ convox rack params set ssl_protocols='TLSv1.2 TLSv1.3' -r rackName
Setting parameters... OK
This command sets the SSL protocols to the specified values.
Configuring the appropriate SSL protocols is essential for maintaining the security and compatibility of your application. By setting the ssl_protocols
parameter, you can ensure that your application uses the desired protocols for secure communication. For more information on SSL protocols, refer to the nginx documentation.