Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 3 of 3
I found the solution to enable a debugging log by http://nginx.org/en/docs/debugging_log.html
./configure --with-debug
by
xmlredice
-
Site Suggestions
I write the sample nginxscript.
I wrote the line
req.log("hello from foo() handler");
But I can't find the log file, do you know the path of the log file or any document to guide to enable log message, thanks.
js_include http.js;
server {
location /hello {
js_set $foo foo;
add_header X-Foo $foo;
js_content baz;
}
}
https.js
function foo
by
xmlredice
-
Site Suggestions