versions: 1.6.29.5 -> 1.6.29.7

This commit is contained in:
Jeff Kaufman
2013-10-28 09:57:12 -04:00
parent 641fb971d1
commit 7d6b6c4b4c
2 changed files with 12 additions and 12 deletions
+10 -10
View File
@@ -37,21 +37,21 @@ recompiling Tengine](https://github.com/pagespeed/ngx_pagespeed/wiki/Using-ngx_p
```bash
$ cd ~
$ wget https://github.com/pagespeed/ngx_pagespeed/archive/release-1.6.29.5-beta.zip
$ unzip release-1.6.29.5-beta.zip # or unzip release-1.6.29.5-beta
$ cd ngx_pagespeed-release-1.6.29.5-beta/
$ wget https://dl.google.com/dl/page-speed/psol/1.6.29.5.tar.gz
$ tar -xzvf 1.6.29.5.tar.gz # expands to psol/
$ wget https://github.com/pagespeed/ngx_pagespeed/archive/release-1.6.29.7-beta.zip
$ unzip release-1.6.29.7-beta.zip # or unzip release-1.6.29.7-beta
$ cd ngx_pagespeed-release-1.6.29.7-beta/
$ wget https://dl.google.com/dl/page-speed/psol/1.6.29.7.tar.gz
$ tar -xzvf 1.6.29.7.tar.gz # expands to psol/
```
3. Download and build nginx:
```bash
$ # check http://nginx.org/en/download.html for the latest version
$ wget http://nginx.org/download/nginx-1.4.2.tar.gz
$ tar -xvzf nginx-1.4.2.tar.gz
$ cd nginx-1.4.2/
$ ./configure --add-module=$HOME/ngx_pagespeed-release-1.6.29.5-beta
$ wget http://nginx.org/download/nginx-1.4.3.tar.gz
$ tar -xvzf nginx-1.4.3.tar.gz
$ cd nginx-1.4.3/
$ ./configure --add-module=$HOME/ngx_pagespeed-release-1.6.29.7-beta
$ make
$ sudo make install
```
@@ -93,7 +93,7 @@ To confirm that the module is loaded, fetch a page and check that you see the
```bash
$ curl -I 'http://localhost:8050/some_page/' | grep X-Page-Speed
X-Page-Speed: 1.6.29.5-...
X-Page-Speed: 1.6.29.7-...
```
Looking at the source of a few pages you should see various changes, such as
+2 -2
View File
@@ -27,8 +27,8 @@ if [ "$mod_pagespeed_dir" = "unset" ] ; then
echo " You need to separately download the pagespeed library:"
echo ""
echo " $ cd /path/to/ngx_pagespeed"
echo " $ wget https://dl.google.com/dl/page-speed/psol/1.6.29.5.tar.gz"
echo " $ tar -xzvf 1.6.29.5.tar.gz # expands to psol/"
echo " $ wget https://dl.google.com/dl/page-speed/psol/1.6.29.7.tar.gz"
echo " $ tar -xzvf 1.6.29.7.tar.gz # expands to psol/"
echo ""
echo " Or see the installation instructions:"
echo " https://github.com/pagespeed/ngx_pagespeed#how-to-build"