Last active
July 22, 2016 18:06
-
-
Save JulesAU/6321976 to your computer and use it in GitHub Desktop.
Installing mod_spdy on Centos / Redhat / Amazon Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will this work for Apache 2.4 on CentOS 7?