about summary refs log tree commit homepage
path: root/examples/public-inbox-nntpd.socket
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-08-11 20:13:09 +0000
committerEric Wong <e@80x24.org>2022-08-11 21:58:06 +0000
commitb2c0df4da9317c1dbfaacdfb1b2af2f0d08afaef (patch)
tree3afb57c2d366a5d4934542b4f11b9af43b56fd43 /examples/public-inbox-nntpd.socket
parent21dd4cc5672ae3ead8a513d3be926722ddb80879 (diff)
downloadpublic-inbox-b2c0df4da9317c1dbfaacdfb1b2af2f0d08afaef.tar.gz
systemd.socket(5) files can actually contain multiple listen
sockets, so shave down inode overhead and simplify config
file management by consolidating all applicable ports into
a single file for each daemon.
Diffstat (limited to 'examples/public-inbox-nntpd.socket')
-rw-r--r--examples/public-inbox-nntpd.socket18
1 files changed, 16 insertions, 2 deletions
diff --git a/examples/public-inbox-nntpd.socket b/examples/public-inbox-nntpd.socket
index eeddf343..0a3ccb2f 100644
--- a/examples/public-inbox-nntpd.socket
+++ b/examples/public-inbox-nntpd.socket
@@ -1,9 +1,23 @@
 # ==> /etc/systemd/system/public-inbox-nntpd.socket <==
+# This contains 5 sockets for an public-inbox-nntpd instance.
+# The TCP ports are well-known ports registered in /etc/services.
+# The /run/nntpd.onion.sock entry is meant for the Tor hidden service
+# enabled by the following line in the torrc(5) file:
+#   HiddenServicePort 119 unix:/run/nntpd.onion.sock
 [Unit]
-Description = public-inbox-nntpd socket
+Description = public-inbox-nntpd sockets
 
 [Socket]
-ListenStream = 119
+ListenStream = 0.0.0.0:119
+ListenStream = 0.0.0.0:563
+ListenStream = /run/nntpd.onion.sock
+
+# Separating IPv4 from IPv6 listeners makes for nicer output
+# of IPv4 addresses in various reporting/monitoring tools
+BindIPv6Only = ipv6-only
+ListenStream = [::]:119
+ListenStream = [::]:563
+
 Service = public-inbox-nntpd@1.service
 
 [Install]