Skip to content

Instantly share code, notes, and snippets.

@JulesAU
Last active July 22, 2016 18:06
Show Gist options
  • Select an option

  • Save JulesAU/6321976 to your computer and use it in GitHub Desktop.

Select an option

Save JulesAU/6321976 to your computer and use it in GitHub Desktop.
Installing mod_spdy on Centos / Redhat / Amazon Linux
# Manually:
yum install -y https://dl-ssl.google.com/dl/linux/direct/mod-spdy-beta_current_x86_64.rpm
# Or in a Chef recipe for extra DevOps karma:
execute "mod-spdy-beta" do
command "yum install -y https://dl-ssl.google.com/dl/linux/direct/mod-spdy-beta_current_x86_64.rpm"
not_if "test -f /etc/httpd/conf.d/spdy.conf"
end
@ldco2016
Copy link

Will this work for Apache 2.4 on CentOS 7?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment