Skip to Content
Nginx HTTP Server - Fourth Edition
book

Nginx HTTP Server - Fourth Edition

by Martin Bjerretoft Fjordvald, Nedelcu
February 2018
Beginner to intermediate
348 pages
9h 40m
English
Packt Publishing
Content preview from Nginx HTTP Server - Fourth Edition

Handler example

Let's have a quick look at what an example handler could look like to give you an idea of the syntax:

function foo(req, res) {    req.log("hello from foo() handler");    return "foo";}function summary(req, res) {    var a, s, h;    s = "JS summary\n\n";    s += "Method: " + req.method + "\n";    s += "HTTP version: " + req.httpVersion + "\n";    s += "Host: " + req.headers.host + "\n";    s += "Remote Address: " + req.remoteAddress + "\n";    s += "URI: " + req.uri + "\n";    s += "Headers:\n";    for (h in req.headers) {        s += " header '" + h + "' is '" + req.headers[h] + "'\n";    }    s += "Args:\n";    for (a in req.args) {        s += " arg '" + a + "' is '" + req.args[a] + "'\n";    }    return s;}function bar(req, res) {    res.headers.foo = 1234;    res.status = 200; res.contentType ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Nginx: From Beginner to Pro

Nginx: From Beginner to Pro

Rahul Soni
Nginx Essentials

Nginx Essentials

Valery Kholodkov, Valery I Kholodkov
SSH, The Secure Shell: The Definitive Guide, 2nd Edition

SSH, The Secure Shell: The Definitive Guide, 2nd Edition

Daniel J. Barrett, Richard E. Silverman, Robert G. Byrnes

Publisher Resources

ISBN: 9781788623551Other