Module: kamailio Branch: master Commit: 64bc28f1279809829b714d23314b3e62030a8ccb URL: https://github.com/kamailio/kamailio/commit/64bc28f1279809829b714d23314b3e62...
Author: Kamailio Dev kamailio.dev@kamailio.org Committer: Kamailio Dev kamailio.dev@kamailio.org Date: 2025-06-26T09:31:10+02:00
modules: readme files regenerated - nghttp2 ... [skip ci]
---
Modified: src/modules/nghttp2/README
---
Diff: https://github.com/kamailio/kamailio/commit/64bc28f1279809829b714d23314b3e62... Patch: https://github.com/kamailio/kamailio/commit/64bc28f1279809829b714d23314b3e62...
---
diff --git a/src/modules/nghttp2/README b/src/modules/nghttp2/README index f880b2e5a13..fc79a0fbae3 100644 --- a/src/modules/nghttp2/README +++ b/src/modules/nghttp2/README @@ -184,15 +184,15 @@ event_route[nghttp2:request] { The event route is executed when a new HTTP request is received.
Inside it, the $nghttp2(...) group of variables is available, giving - access to several attributes of the HTTP request, such as method, URL, - data (body) or headers. + access to several attributes of the HTTP request, such as method, URL + path, data (body) or headers. ... ... loadmodule "nghttp2.so ... event_route[nghttp2:request] { - xinfo("request: $nghttp2(method) - url: $nghttp2(url) - data: [$nghttp2(data -)]\n"); + xinfo("request: $nghttp2(method) - url: $nghttp2(path) - data: [$nghttp2(dat +a)]\n"); nghttp2_reply("200", "OK", "text/html", "<html><body>OK</body></html>"); }