readme: 1.7.30.4 -> 1.8.31.2

This commit is contained in:
Jeff Kaufman
2014-05-28 16:13:01 -04:00
parent 36d285a354
commit 00080ff728
2 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -37,11 +37,11 @@ recompiling Tengine](https://github.com/pagespeed/ngx_pagespeed/wiki/Using-ngx_p
```bash ```bash
$ cd ~ $ cd ~
$ wget https://github.com/pagespeed/ngx_pagespeed/archive/v1.7.30.4-beta.zip $ wget https://github.com/pagespeed/ngx_pagespeed/archive/v1.8.31.2-beta.zip
$ unzip v1.7.30.4-beta.zip # or unzip v1.7.30.4-beta $ unzip v1.8.31.2-beta.zip # or unzip v1.8.31.2-beta
$ cd ngx_pagespeed-1.7.30.4-beta/ $ cd ngx_pagespeed-1.8.31.2-beta/
$ wget https://dl.google.com/dl/page-speed/psol/1.7.30.4.tar.gz $ wget https://dl.google.com/dl/page-speed/psol/1.8.31.2.tar.gz
$ tar -xzvf 1.7.30.4.tar.gz # expands to psol/ $ tar -xzvf 1.8.31.2.tar.gz # expands to psol/
``` ```
3. Download and build nginx: 3. Download and build nginx:
@@ -52,7 +52,7 @@ recompiling Tengine](https://github.com/pagespeed/ngx_pagespeed/wiki/Using-ngx_p
$ wget http://nginx.org/download/nginx-1.6.0.tar.gz $ wget http://nginx.org/download/nginx-1.6.0.tar.gz
$ tar -xvzf nginx-1.6.0.tar.gz $ tar -xvzf nginx-1.6.0.tar.gz
$ cd nginx-1.6.0/ $ cd nginx-1.6.0/
$ ./configure --add-module=$HOME/ngx_pagespeed-1.7.30.4-beta $ ./configure --add-module=$HOME/ngx_pagespeed-1.8.31.2-beta
$ make $ make
$ sudo make install $ sudo make install
``` ```
@@ -95,7 +95,7 @@ To confirm that the module is loaded, fetch a page and check that you see the
```bash ```bash
$ curl -I 'http://localhost:8050/some_page/' | grep X-Page-Speed $ curl -I 'http://localhost:8050/some_page/' | grep X-Page-Speed
X-Page-Speed: 1.7.30.4-... X-Page-Speed: 1.8.31.2-...
``` ```
Looking at the source of a few pages you should see various changes, such as 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 " You need to separately download the pagespeed library:"
echo "" echo ""
echo " $ cd /path/to/ngx_pagespeed" echo " $ cd /path/to/ngx_pagespeed"
echo " $ wget https://dl.google.com/dl/page-speed/psol/1.7.30.4.tar.gz" echo " $ wget https://dl.google.com/dl/page-speed/psol/1.8.31.2.tar.gz"
echo " $ tar -xzvf 1.7.30.4.tar.gz # expands to psol/" echo " $ tar -xzvf 1.8.31.2.tar.gz # expands to psol/"
echo "" echo ""
echo " Or see the installation instructions:" echo " Or see the installation instructions:"
echo " https://github.com/pagespeed/ngx_pagespeed#how-to-build" echo " https://github.com/pagespeed/ngx_pagespeed#how-to-build"