remove version from the Server header

while we still want to know which server is running to ease operation, the version was giving too much information on the installation, so let's remove it.
This commit is contained in:
Benoit Chesneau 2020-01-10 11:00:00 +01:00
parent abc621beea
commit 2f944c9bea

View File

@ -5,4 +5,4 @@
version_info = (20, 0, 4)
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__
SERVER_SOFTWARE = "gunicorn"