summarylogtreecommitdiffstats
path: root/fossil-xinetd
diff options
context:
space:
mode:
Diffstat (limited to 'fossil-xinetd')
-rw-r--r--fossil-xinetd23
1 files changed, 23 insertions, 0 deletions
diff --git a/fossil-xinetd b/fossil-xinetd
new file mode 100644
index 000000000000..28e22a198a23
--- /dev/null
+++ b/fossil-xinetd
@@ -0,0 +1,23 @@
+service fossil
+{
+#better not change any of these
+type = UNLISTED
+socket_type = stream
+protocol = tcp
+wait = no
+user = root
+server = /usr/bin/fossil
+
+#only change these
+#http port, fossil will listen
+port = 8055
+
+#change this path to where your fossil repositories are
+server_args = http /var/fossil
+
+#comment next line to enable remote access
+only_from = 127.0.0.1 localhost
+
+#change to `no` to activate fossil
+disable = yes
+}