mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
parent
577c3eb030
commit
9c73259f71
@ -12,6 +12,8 @@ Core
|
||||
Use the :ref:`gunicorn-cmd` command-line interface instead.
|
||||
- The previously deprecated ``django_settings`` setting has been removed.
|
||||
Use the :ref:`raw-env` setting instead.
|
||||
- The default value of :ref:`ssl-version` has been changed from
|
||||
``ssl.PROTOCOL_TLSv1`` to ``ssl.PROTOCOL_SSLv23``.
|
||||
|
||||
19.6.0 / 2016/05/21
|
||||
===================
|
||||
|
||||
@ -1142,6 +1142,10 @@ ssl_version
|
||||
|
||||
SSL version to use (see stdlib ssl module's)
|
||||
|
||||
.. versionchanged:: 19.7
|
||||
The default value has been changed from ``ssl.PROTOCOL_TLSv1`` to
|
||||
``ssl.PROTOCOL_SSLv23``.
|
||||
|
||||
.. _cert-reqs:
|
||||
|
||||
cert_reqs
|
||||
|
||||
@ -1755,9 +1755,13 @@ class SSLVersion(Setting):
|
||||
section = "SSL"
|
||||
cli = ["--ssl-version"]
|
||||
validator = validate_pos_int
|
||||
default = ssl.PROTOCOL_TLSv1
|
||||
default = ssl.PROTOCOL_SSLv23
|
||||
desc = """\
|
||||
SSL version to use (see stdlib ssl module's)
|
||||
|
||||
.. versionchanged:: 19.7
|
||||
The default value has been changed from ``ssl.PROTOCOL_TLSv1`` to
|
||||
``ssl.PROTOCOL_SSLv23``.
|
||||
"""
|
||||
|
||||
class CertReqs(Setting):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user