February 2018
Beginner to intermediate
348 pages
9h 40m
English
The Nginx XSLT module allows you to apply an XSLT transform on an XML file or response received from a backend server (proxy, FastCGI, and so on) before serving the client:
|
Directive |
Description |
|
xml_entities Context: http, server, location |
Specifies the DTD file containing symbolic element definitions. Syntax: File path Example: xml_entities xml/entities.dtd; |
|
xslt_stylesheet Context: location |
Specifies the XSLT template file path with its parameters. Variables may be inserted in the parameters. Syntax: xslt_stylesheet template [param1] [param2...]; Example: xslt_stylesheet xml/sch.xslt param=value; |
|
xslt_types Context: http, server, location |
Defines additional MIME types to which the transforms may apply, other ... |