Remove deprecated ssl options
These options were deprecated for 8+ years[1].
[1] 2e2940d1e1
Change-Id: If88d7242251b9e25c1d4ee9ec9444f87fe2bcd6a
This commit is contained in:
@@ -98,19 +98,13 @@ wsgi_opts = [
|
|||||||
ssl_opts = [
|
ssl_opts = [
|
||||||
cfg.StrOpt('ca_file',
|
cfg.StrOpt('ca_file',
|
||||||
help="CA certificate file to use to verify "
|
help="CA certificate file to use to verify "
|
||||||
"connecting clients.",
|
"connecting clients."),
|
||||||
deprecated_group='DEFAULT',
|
|
||||||
deprecated_name='ssl_ca_file'),
|
|
||||||
cfg.StrOpt('cert_file',
|
cfg.StrOpt('cert_file',
|
||||||
help="Certificate file to use when starting "
|
help="Certificate file to use when starting "
|
||||||
"the server securely.",
|
"the server securely."),
|
||||||
deprecated_group='DEFAULT',
|
|
||||||
deprecated_name='ssl_cert_file'),
|
|
||||||
cfg.StrOpt('key_file',
|
cfg.StrOpt('key_file',
|
||||||
help="Private key file to use when starting "
|
help="Private key file to use when starting "
|
||||||
"the server securely.",
|
"the server securely."),
|
||||||
deprecated_group='DEFAULT',
|
|
||||||
deprecated_name='ssl_key_file'),
|
|
||||||
cfg.StrOpt('version',
|
cfg.StrOpt('version',
|
||||||
help='SSL version to use (valid only if SSL enabled). '
|
help='SSL version to use (valid only if SSL enabled). '
|
||||||
'Valid values are TLSv1 and SSLv23. SSLv2, SSLv3, '
|
'Valid values are TLSv1 and SSLv23. SSLv2, SSLv3, '
|
||||||
|
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
The following deprecated options have been removed. Use the ``[ssl]``
|
||||||
|
options instead.
|
||||||
|
|
||||||
|
- ``[DEFAULT] ssl_ca_file``
|
||||||
|
- ``[DEFAULT] ssl_cert_file``
|
||||||
|
- ``[DEFAULT] ssl_key_file``
|
Reference in New Issue
Block a user