readme: release 1.7.30.2

This commit is contained in:
Jeff Kaufman
2014-01-06 16:51:41 -05:00
parent ae2d4bac7f
commit 72ddb34a1c
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 ```bash
$ cd ~ $ cd ~
$ wget https://github.com/pagespeed/ngx_pagespeed/archive/release-1.7.30.1-beta.zip $ wget https://github.com/pagespeed/ngx_pagespeed/archive/v1.7.30.2-beta.zip
$ unzip release-1.7.30.1-beta.zip # or unzip release-1.7.30.1-beta $ unzip v1.7.30.2-beta.zip # or unzip v1.7.30.2-beta
$ cd ngx_pagespeed-release-1.7.30.1-beta/ $ cd ngx_pagespeed-1.7.30.2-beta/
$ wget https://dl.google.com/dl/page-speed/psol/1.7.30.1.tar.gz $ wget https://dl.google.com/dl/page-speed/psol/1.7.30.2.tar.gz
$ tar -xzvf 1.7.30.1.tar.gz # expands to psol/ $ tar -xzvf 1.7.30.2.tar.gz # expands to psol/
``` ```
3. Download and build nginx: 3. Download and build nginx:
```bash ```bash
$ # check http://nginx.org/en/download.html for the latest version $ # check http://nginx.org/en/download.html for the latest version
$ wget http://nginx.org/download/nginx-1.4.3.tar.gz $ wget http://nginx.org/download/nginx-1.4.4.tar.gz
$ tar -xvzf nginx-1.4.3.tar.gz $ tar -xvzf nginx-1.4.4.tar.gz
$ cd nginx-1.4.3/ $ cd nginx-1.4.4/
$ ./configure --add-module=$HOME/ngx_pagespeed-release-1.7.30.1-beta $ ./configure --add-module=$HOME/ngx_pagespeed-1.7.30.2-beta
$ make $ make
$ sudo make install $ sudo make install
``` ```
@@ -94,7 +94,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.1-... X-Page-Speed: 1.7.30.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.1.tar.gz" echo " $ wget https://dl.google.com/dl/page-speed/psol/1.7.30.2.tar.gz"
echo " $ tar -xzvf 1.7.30.1.tar.gz # expands to psol/" echo " $ tar -xzvf 1.7.30.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"