Forum Discussion

Vikneswaran_709's avatar
Vikneswaran_709
Icon for Nimbostratus rankNimbostratus
Nov 24, 2016

Identify HTTP version

How to identify the HTTP version (0.9,1.0 or 1.1) of the backend pool member to Construct application health monitor ? Please share some commends with an output.

 

2 Replies

  • JG's avatar
    JG
    Icon for Cumulonimbus rankCumulonimbus

    It's not clear why you want to do this, for it would be really shocking if a Web server does not support HTTP/1.0 these days.

     

    The default HTTP monitor uses v0.9, and you can use "curl" with either "--http1.0" or "--http1.1" flags to check version support.

     

  • JG's avatar
    JG
    Icon for Cumulonimbus rankCumulonimbus

    Well, do not use the default HTTP monitor - not a recommended practice! Create a separate HTTP monitor, with a "send string" of the following as the minimum:

     

    GET / HTTP/1.0\r\n\r\n

     

    .