the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
661 B
25 lines
661 B
<?xml version="1.0" encoding="UTF-8"?> |
|
<module xmlns="urn:lighttpd.net:lighttpd2/doc1"> |
|
<short>connect to HTTP backends for generating response content</short> |
|
|
|
<action name="proxy"> |
|
<short>connect to HTTP backend</short> |
|
<parameter name="socket"> |
|
<short>socket to connect to, either "ip:port" or "unix:/path"</short> |
|
</parameter> |
|
<description> |
|
<textile><![CDATA[ |
|
proxy uses @request.raw_path@ for the URL (including the query string) to send to the backend. |
|
]]></textile> |
|
</description> |
|
<example> |
|
<config> |
|
setup { |
|
module_load "mod_proxy"; |
|
} |
|
|
|
proxy "127.0.0.1:8080"; |
|
</config> |
|
</example> |
|
</action> |
|
</module>
|
|
|