Welcome! Log In Create A New Profile

Advanced

[njs] Updated README.

Roman Arutyunyan
July 20, 2016 02:44PM
details: http://hg.nginx.org/njs/rev/faab537db6f8
branches:
changeset: 126:faab537db6f8
user: Roman Arutyunyan <arut@nginx.com>
date: Wed Jul 20 21:40:34 2016 +0300
description:
Updated README.

diffstat:

README | 19 +++++++++++++------
1 files changed, 13 insertions(+), 6 deletions(-)

diffs (76 lines):

diff -r 3f8f801e2f53 -r faab537db6f8 README
--- a/README Wed Jul 20 19:38:00 2016 +0300
+++ b/README Wed Jul 20 21:40:34 2016 +0300
@@ -4,13 +4,14 @@ option:

./configure --add-module=<path-to-njs>/nginx

-Alternatively, you can build a dynamic version of the njs module
+Alternatively, you can build a dynamic version of the modules

./configure --add-dynamic-module=<path-to-njs>/nginx

-and add the following line to nginx.conf and reload nginx:
+and add the following lines to nginx.conf to load them

load_module modules/ngx_http_js_module.so;
+ load_module modules/ngx_stream_js_module.so;

Please report your experiences to the NGINX development mailing list
nginx-devel@nginx.org (http://mailman.nginx.org/mailman/listinfo/nginx-devel).
@@ -49,6 +50,9 @@ res

Example nginx.conf:

+ # load dynamic HTTP JavaScript module
+ load_module modules/ngx_http_js_module.so;
+
worker_processes 1;
pid logs/nginx.pid;

@@ -58,7 +62,7 @@ Example nginx.conf:

http {
# include JavaScript file
- js_include js-http.js;
+ js_include http.js;

server {
listen 8000;
@@ -83,7 +87,7 @@ Example nginx.conf:
}


-js-http.js:
+http.js:

function foo(req, res) {
req.log("hello from foo() handler");
@@ -146,6 +150,9 @@ The following properties are available i

Example nginx.conf:

+ # load dynamic Stream JavaScript module
+ load_module modules/ngx_stream_js_module.so;
+
worker_processes 1;
pid logs/nginx.pid;

@@ -155,7 +162,7 @@ Example nginx.conf:

stream {
# include JavaScript file
- js_include js-stream.js;
+ js_include stream.js;

server {
listen 8000;
@@ -171,7 +178,7 @@ Example nginx.conf:
}


-js-stream.js:
+stream.js:

function foo(s) {
s.log("hello from foo() handler!");

_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[njs] Updated README.

Roman Arutyunyan 421 July 20, 2016 02:44PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 261
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready