A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://github.com/openresty/redis2-nginx-module/commit/78a7622502f2d1db50c37083e30791de07426a52 below:

updated docs to reflect recent changes. · openresty/redis2-nginx-module@78a7622 · GitHub

File tree Expand file treeCollapse file tree 3 files changed

+30

-30

lines changed

Filter options

Expand file treeCollapse file tree 3 files changed

+30

-30

lines changed Original file line number Diff line number Diff line change

@@ -8,9 +8,9 @@ Status

8 8

This module is already production ready.

9 9 10 10

Version

11 -

This document describes ngx_redis2 v0.09

12 -

(<https://github.com/agentzh/redis2-nginx-module/tags>) released on 8

13 -

September 2012.

11 +

This document describes ngx_redis2 v0.10

12 +

(<https://github.com/agentzh/redis2-nginx-module/tags>) released on 24

13 +

March 2013.

14 14 15 15

Synopsis

16 16

location /foo {

@@ -533,17 +533,17 @@ Installation

533 533

standard Nginx core as follows:

534 534 535 535

* Grab the nginx source code from nginx.org (<http://nginx.org>), for

536 -

example, the version 1.2.3 (see nginx compatibility),

536 +

example, the version 1.2.7 (see nginx compatibility),

537 537 538 538

* and then download the latest version of the release tarball of this

539 539

module from ngx_redis2's file list

540 540

(<http://github.com/agentzh/redis2-nginx-module/tags>).

541 541 542 542

* and finally build the source with this module:

543 543 544 -

wget 'http://nginx.org/download/nginx-1.2.3.tar.gz'

545 -

tar -xzvf nginx-1.2.3.tar.gz

546 -

cd nginx-1.2.3/

544 +

wget 'http://nginx.org/download/nginx-1.2.7.tar.gz'

545 +

tar -xzvf nginx-1.2.7.tar.gz

546 +

cd nginx-1.2.7/

547 547 548 548

# Here we assume you would install you nginx under /opt/nginx/.

549 549

./configure --prefix=/opt/nginx \

@@ -560,9 +560,9 @@ Compatibility

560 560 561 561

The following versions of Nginx should work with this module:

562 562 563 -

* 1.3.x (last tested: 1.3.4)

563 +

* 1.3.x (last tested: 1.3.7)

564 564 565 -

* 1.2.x (last tested: 1.2.3)

565 +

* 1.2.x (last tested: 1.2.7)

566 566 567 567

* 1.1.x (last tested: 1.1.5)

568 568

@@ -602,7 +602,7 @@ TODO

602 602

* Add the "redis2_as_json" directive to allow emitting JSON directly.

603 603 604 604

Author

605 -

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>

605 +

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, CloudFlare Inc.

606 606 607 607

Getting involved

608 608

You'll be very welcomed to submit patches to the author or just ask for

@@ -611,8 +611,8 @@ Getting involved

611 611

Copyright & License

612 612

This module is licenced under the BSD license.

613 613 614 -

Copyright (C) 2010-2012, by Yichun "agentzh" Zhang (章亦春)

615 -

<agentzh@gmail.com>.

614 +

Copyright (C) 2010-2013, by Yichun "agentzh" Zhang (章亦春)

615 +

<agentzh@gmail.com>, CloudFlare Inc.

616 616 617 617

All rights reserved.

618 618 Original file line number Diff line number Diff line change

@@ -18,7 +18,7 @@ This module is already production ready.

18 18

Version

19 19

=======

20 20 21 -

This document describes ngx_redis2 [v0.09](https://github.com/agentzh/redis2-nginx-module/tags) released on 8 September 2012.

21 +

This document describes ngx_redis2 [v0.10](https://github.com/agentzh/redis2-nginx-module/tags) released on 24 March 2013.

22 22 23 23

Synopsis

24 24

========

@@ -521,13 +521,13 @@ You are recommended to install this module (as well as the Nginx core and many m

521 521 522 522

Alternatively, you can install this module manually by recompiling the standard Nginx core as follows:

523 523 524 -

* Grab the nginx source code from [nginx.org](http://nginx.org), for example, the version 1.2.3 (see nginx compatibility),

524 +

* Grab the nginx source code from [nginx.org](http://nginx.org), for example, the version 1.2.7 (see nginx compatibility),

525 525

* and then download the latest version of the release tarball of this module from ngx_redis2's [file list](http://github.com/agentzh/redis2-nginx-module/tags).

526 526

* and finally build the source with this module:

527 527 528 -

wget 'http://nginx.org/download/nginx-1.2.3.tar.gz'

529 -

tar -xzvf nginx-1.2.3.tar.gz

530 -

cd nginx-1.2.3/

528 +

wget 'http://nginx.org/download/nginx-1.2.7.tar.gz'

529 +

tar -xzvf nginx-1.2.7.tar.gz

530 +

cd nginx-1.2.7/

531 531 532 532

# Here we assume you would install you nginx under /opt/nginx/.

533 533

./configure --prefix=/opt/nginx \

@@ -544,8 +544,8 @@ Redis 2.0, 2.2, 2.4, and above should work with this module without any issues.

544 544 545 545

The following versions of Nginx should work with this module:

546 546 547 -

* 1.3.x (last tested: 1.3.4)

548 -

* 1.2.x (last tested: 1.2.3)

547 +

* 1.3.x (last tested: 1.3.7)

548 +

* 1.2.x (last tested: 1.2.7)

549 549

* 1.1.x (last tested: 1.1.5)

550 550

* 1.0.x (last tested: 1.0.10)

551 551

* 0.9.x (last tested: 0.9.4)

@@ -588,7 +588,7 @@ TODO

588 588

Author

589 589

======

590 590 591 -

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>

591 +

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, CloudFlare Inc.

592 592 593 593

Getting involved

594 594

================

@@ -601,7 +601,7 @@ Copyright & License

601 601 602 602

This module is licenced under the BSD license.

603 603 604 -

Copyright (C) 2010-2012, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>.

604 +

Copyright (C) 2010-2013, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, CloudFlare Inc.

605 605 606 606

All rights reserved.

607 607 Original file line number Diff line number Diff line change

@@ -10,7 +10,7 @@ This module is already production ready.

10 10 11 11

= Version =

12 12 13 -

This document describes ngx_redis2 [https://github.com/agentzh/redis2-nginx-module/tags v0.09] released on 8 September 2012.

13 +

This document describes ngx_redis2 [https://github.com/agentzh/redis2-nginx-module/tags v0.10] released on 24 March 2013.

14 14 15 15

= Synopsis =

16 16

@@ -493,13 +493,13 @@ You are recommended to install this module (as well as the Nginx core and many m

493 493 494 494

Alternatively, you can install this module manually by recompiling the standard Nginx core as follows:

495 495 496 -

* Grab the nginx source code from [http://nginx.org nginx.org], for example, the version 1.2.3 (see nginx compatibility),

496 +

* Grab the nginx source code from [http://nginx.org nginx.org], for example, the version 1.2.7 (see nginx compatibility),

497 497

* and then download the latest version of the release tarball of this module from ngx_redis2's [http://github.com/agentzh/redis2-nginx-module/tags file list].

498 498

* and finally build the source with this module:

499 499

<geshi lang="bash">

500 -

wget 'http://nginx.org/download/nginx-1.2.3.tar.gz'

501 -

tar -xzvf nginx-1.2.3.tar.gz

502 -

cd nginx-1.2.3/

500 +

wget 'http://nginx.org/download/nginx-1.2.7.tar.gz'

501 +

tar -xzvf nginx-1.2.7.tar.gz

502 +

cd nginx-1.2.7/

503 503 504 504

# Here we assume you would install you nginx under /opt/nginx/.

505 505

./configure --prefix=/opt/nginx \

@@ -515,8 +515,8 @@ Redis 2.0, 2.2, 2.4, and above should work with this module without any issues.

515 515 516 516

The following versions of Nginx should work with this module:

517 517 518 -

* 1.3.x (last tested: 1.3.4)

519 -

* 1.2.x (last tested: 1.2.3)

518 +

* 1.3.x (last tested: 1.3.7)

519 +

* 1.2.x (last tested: 1.2.7)

520 520

* 1.1.x (last tested: 1.1.5)

521 521

* 1.0.x (last tested: 1.0.10)

522 522

* 0.9.x (last tested: 0.9.4)

@@ -552,7 +552,7 @@ Available on github at [http://github.com/agentzh/redis2-nginx-module agentzh/re

552 552 553 553

= Author =

554 554 555 -

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>

555 +

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, CloudFlare Inc.

556 556 557 557

= Getting involved =

558 558

@@ -563,7 +563,7 @@ a commit bit to the source repository on GitHub.

563 563 564 564

This module is licenced under the BSD license.

565 565 566 -

Copyright (C) 2010-2012, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>.

566 +

Copyright (C) 2010-2013, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, CloudFlare Inc.

567 567 568 568

All rights reserved.

569 569

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4