You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd2/doc/mod_scgi.xml

24 lines
524 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:lighttpd.net:lighttpd2/doc1">
<short>connect to SCGI backends for generating response content</short>
<action name="scgi">
<short>connect to SCGI backend</short>
<parameter name="socket">
<short>socket to connect to, either "ip:port" or "unix:/path"</short>
</parameter>
<example>
<config>
setup {
module_load "mod_scgi";
}
if req.path =^ "/RPC2" {
scgi "127.0.0.1:5000";
}
</config>
</example>
</action>
</module>