Skip to content

Instantly share code, notes, and snippets.

@arcusfelis
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save arcusfelis/23f2222d35751b22c2eb to your computer and use it in GitHub Desktop.

Select an option

Save arcusfelis/23f2222d35751b22c2eb to your computer and use it in GitHub Desktop.
Update cowboy settings runtime

Check, if compression is enabled:

proplists:get_value(compress, ranch:get_protocol_options(http), false).
true

Enable compression:

ranch:set_protocol_options(http, lists:keystore(compress, 1, ranch:get_protocol_options(http), {compress, false})).

Disable compression:

ranch:set_protocol_options(http, lists:keystore(compress, 1, ranch:get_protocol_options(http), {compress, false})).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment