ltm rule command COMPRESS disableΒΆ

iRule(1)		      BIG-IP TMSH Manual		      iRule(1)



COMPRESS::disable
       Disables compression for the current HTTP response.

SYNOPSIS
       COMPRESS::disable (request | response)?

DESCRIPTION
       Disables compression for the current HTTP response. Note that when
       using this command, you must set the HTTP profile setting Compression
       to Selective.

       COMPRESS::disable
	   Disables compression for the current HTTP response. Note that when
       using this command, you must set the HTTP profile setting Compression
       to Selective.

RETURN VALUE
VALID DURING
       HTTP_REQUEST HTTP_REQUEST_DATA HTTP_RESPONSE HTTP_RESPONSE_DATA

EXAMPLES
	when HTTP_REQUEST {
	  if { [TCP::mss] >= 1280 } {
	    COMPRESS::disable
	  }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-9.0.0 --First introduced the command.



BIG-IP				  2017-01-31			      iRule(1)