CherryPy server name tag

后端 未结 3 2056
一向
一向 2021-01-12 08:42

When running a CherryPy app it will send server name tag something like CherryPy/version. Is it possible to rename/overwrite that from the app without modifying CherryPy so

3条回答
  •  无人及你
    2021-01-12 09:20

    This can now be set on a per application basis in the config file/dict

    [/]  
    response.headers.server = "CherryPy Dev01"
    

提交回复
热议问题