summarylogtreecommitdiffstats
path: root/fossil-xinetd
diff options
context:
space:
mode:
authorDaniel YC Lin2015-06-13 13:07:16 +0800
committerDaniel YC Lin2015-06-13 13:07:16 +0800
commit73b8369f02b55eb554b1a9480032069b618c19c1 (patch)
treeaace20f44fd01e3a8caf6ec8636fe39e2cd51e56 /fossil-xinetd
downloadaur-fossil-tip.tar.gz
merge to aur4
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
+}