]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd-socket-proxyd.xml
Reindent man pages to 2ch
[thirdparty/systemd.git] / man / systemd-socket-proxyd.xml
CommitLineData
912b54ad
DS
1<?xml version="1.0"?>
2<!--*-nxml-*-->
3<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
4 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
5<!--
6 This file is part of systemd.
7
8 Copyright 2013 David Strauss
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22-->
dfdebb1b 23<refentry id="systemd-socket-proxyd"
798d3a52 24 xmlns:xi="http://www.w3.org/2001/XInclude">
dfdebb1b 25
798d3a52
ZJS
26 <refentryinfo>
27 <title>systemd-socket-proxyd</title>
28 <productname>systemd</productname>
29 <authorgroup>
30 <author>
31 <contrib>Developer</contrib>
32 <firstname>David</firstname>
33 <surname>Strauss</surname>
34 <email>david@davidstrauss.net</email>
35 </author>
36 </authorgroup>
37 </refentryinfo>
38 <refmeta>
39 <refentrytitle>systemd-socket-proxyd</refentrytitle>
40 <manvolnum>8</manvolnum>
41 </refmeta>
42 <refnamediv>
43 <refname>systemd-socket-proxyd</refname>
44 <refpurpose>Bidirectionally proxy local sockets to another (possibly remote) socket.</refpurpose>
45 </refnamediv>
46 <refsynopsisdiv>
47 <cmdsynopsis>
48 <command>systemd-socket-proxyd</command>
49 <arg choice="opt" rep="repeat"><replaceable>OPTIONS</replaceable></arg>
50 <arg choice="plain"><replaceable>HOST</replaceable>:<replaceable>PORT</replaceable></arg>
51 </cmdsynopsis>
52 <cmdsynopsis>
53 <command>systemd-socket-proxyd</command>
54 <arg choice="opt" rep="repeat"><replaceable>OPTIONS</replaceable></arg>
55 <arg choice="plain"><replaceable>UNIX-DOMAIN-SOCKET-PATH</replaceable>
56 </arg>
57 </cmdsynopsis>
58 </refsynopsisdiv>
59 <refsect1>
60 <title>Description</title>
61 <para>
62 <command>systemd-socket-proxyd</command> is a generic
63 socket-activated network socket forwarder proxy daemon for IPv4,
64 IPv6 and UNIX stream sockets. It may be used to bi-directionally
65 forward traffic from a local listening socket to a local or remote
66 destination socket.</para>
8569a776 67
798d3a52
ZJS
68 <para>One use of this tool is to provide socket activation support
69 for services that do not natively support socket activation. On
70 behalf of the service to activate, the proxy inherits the socket
71 from systemd, accepts each client connection, opens a connection
72 to a configured server for each client, and then bidirectionally
73 forwards data between the two.</para>
74 <para>This utility's behavior is similar to
75 <citerefentry><refentrytitle>socat</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
76 The main differences for <command>systemd-socket-proxyd</command>
77 are support for socket activation with
78 <literal>Accept=false</literal> and an event-driven
79 design that scales better with the number of
80 connections.</para>
81 </refsect1>
82 <refsect1>
83 <title>Options</title>
84 <para>The following options are understood:</para>
85 <variablelist>
86 <xi:include href="standard-options.xml" xpointer="help" />
87 <xi:include href="standard-options.xml" xpointer="version" />
88 </variablelist>
89 </refsect1>
90 <refsect1>
91 <title>Exit status</title>
92 <para>On success, 0 is returned, a non-zero failure
93 code otherwise.</para>
94 </refsect1>
95 <refsect1>
96 <title>Examples</title>
97 <refsect2>
98 <title>Simple Example</title>
99 <para>Use two services with a dependency and no namespace
100 isolation.</para>
101 <example>
102 <title>proxy-to-nginx.socket</title>
103 <programlisting><![CDATA[[Socket]
912b54ad
DS
104ListenStream=80
105
106[Install]
9fccdb0f 107WantedBy=sockets.target]]></programlisting>
798d3a52
ZJS
108 </example>
109 <example>
110 <title>proxy-to-nginx.service</title>
111 <programlisting><![CDATA[[Unit]
912b54ad 112Requires=nginx.service
34c7dc47 113After=nginx.service
912b54ad
DS
114
115[Service]
34c7dc47
LP
116ExecStart=/usr/lib/systemd/systemd-socket-proxyd /tmp/nginx.sock
117PrivateTmp=yes
9fccdb0f 118PrivateNetwork=yes]]></programlisting>
798d3a52
ZJS
119 </example>
120 <example>
121 <title>nginx.conf</title>
122 <programlisting>
912b54ad
DS
123<![CDATA[[...]
124server {
125 listen unix:/tmp/nginx.sock;
126 [...]]]>
127</programlisting>
798d3a52
ZJS
128 </example>
129 <example>
130 <title>Enabling the proxy</title>
131 <programlisting><![CDATA[# systemctl enable proxy-to-nginx.socket
202e6abb 132# systemctl start proxy-to-nginx.socket
9fccdb0f 133$ curl http://localhost:80/]]></programlisting>
798d3a52
ZJS
134 </example>
135 </refsect2>
136 <refsect2>
137 <title>Namespace Example</title>
138 <para>Similar as above, but runs the socket proxy and the main
139 service in the same private namespace, assuming that
140 <filename>nginx.service</filename> has
141 <varname>PrivateTmp=</varname> and
142 <varname>PrivateNetwork=</varname> set, too.</para>
143 <example>
144 <title>proxy-to-nginx.socket</title>
145 <programlisting><![CDATA[[Socket]
912b54ad
DS
146ListenStream=80
147
148[Install]
9fccdb0f 149WantedBy=sockets.target]]></programlisting>
798d3a52
ZJS
150 </example>
151 <example>
152 <title>proxy-to-nginx.service</title>
153 <programlisting><![CDATA[[Unit]
34c7dc47
LP
154Requires=nginx.service
155After=nginx.service
156JoinsNamespaceOf=nginx.service
912b54ad
DS
157
158[Service]
34c7dc47
LP
159ExecStart=/usr/lib/systemd/systemd-socket-proxyd 127.0.0.1:8080
160PrivateTmp=yes
9fccdb0f 161PrivateNetwork=yes]]></programlisting>
798d3a52
ZJS
162 </example>
163 <example>
164 <title>nginx.conf</title>
165 <programlisting><![CDATA[[...]
912b54ad
DS
166server {
167 listen 8080;
168 listen unix:/tmp/nginx.sock;
9fccdb0f 169 [...]]]></programlisting>
798d3a52
ZJS
170 </example>
171 <example>
172 <title>Enabling the proxy</title>
173 <programlisting><![CDATA[# systemctl enable proxy-to-nginx.socket
34c7dc47 174# systemctl start proxy-to-nginx.socket
9fccdb0f 175$ curl http://localhost:80/]]></programlisting>
798d3a52
ZJS
176 </example>
177 </refsect2>
178 </refsect1>
179 <refsect1>
180 <title>See Also</title>
181 <para>
182 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
183 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
184 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
185 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
186 <citerefentry><refentrytitle>socat</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
187 <citerefentry><refentrytitle>nginx</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
188 <citerefentry><refentrytitle>curl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
189 </para>
190 </refsect1>
912b54ad 191</refentry>