Artifact dd52096aff2f39ef55072724e16bed332a4ce813260515e7e7cd8f16706d83bb:
- File www/server/any/xinetd.md — part of check-in [0f6f151dd3] at 2019-08-19 00:30:25 on branch server-docs — Added links back to the top-level www/server/index.html article from the tail end of www/server/*/*.md. (user: wyoung size: 866) [more...]
Serving via xinetd
Some operating systems have replaced the old Unix inetd
daemon with
xinetd
, which has a similar mission but with a very different
configuration file format.
The typical configuration file is either /etc/xinetd.conf
or a subfile
in the /etc/xinetd.d
directory. You need a configuration something
like this for Fossil:
service http
{
port = 80
socket_type = stream
wait = no
user = root
server = /usr/bin/fossil
server_args = http /home/fossil/repos/
}
This example configures Fossil to serve multiple repositories under the
/home/fossil/repos/
directory.
Beyond this, see the general commentary in our article on the inetd
method as they also apply to service via xinetd
.