How to configure SG to respond with HTTP 1.0 when receiving a HTTP/1.0 request
search cancel

How to configure SG to respond with HTTP 1.0 when receiving a HTTP/1.0 request

book

Article ID: 166356

calendar_today

Updated On:

Products

ProxySG Software - SGOS

Issue/Introduction

Some applications do not support the new functionality of HTTP 1.1, and require to use HTTP 1.0 instead.

Resolution

 

Example CPL that use a condition if http request version 1.0, then let SG response with http 1.0

<Proxy>
    http.request.version="1.0" http.response.version(1.0)

 

Example CPL that use a condition if http request version 1.0, then let SG response with http 1.0, and request with http 1.0

<Proxy>
    http.request.version="1.0" http.response.version(1.0) http.request.version(1.0)
 
  
 
Example CPL that use a condition with specific site, then let SG response with http 1.0, and request with http 1.0
 
<Proxy>
url.domain=//example.com/ http.response.version(1.0) http.request.version(1.0)