]> Sergey Matveev's repositories - public-inbox.git/blobdiff - public-inbox-nntpd
psgi: enable ReverseProxy middleware by default
[public-inbox.git] / public-inbox-nntpd
index 0035637d7aa874f8da400a4128991b2fbdcc0e5e..23d269d4b778c9ffb6480f81ef3154eac56a72b3 100755 (executable)
@@ -1,6 +1,8 @@
 #!/usr/bin/perl -w
 # Copyright (C) 2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
+#
+# Standalone NNTP server for public-inbox.
 use strict;
 use warnings;
 require PublicInbox::Daemon;
@@ -9,8 +11,8 @@ require PublicInbox::NNTP;
 require PublicInbox::Config;
 my $nntpd = PublicInbox::NNTPD->new;
 daemon_run('0.0.0.0:119',
-       sub { $nntpd->refresh_groups },
-       sub ($) { PublicInbox::NNTP->new($_[0], $nntpd) });
+       sub { $nntpd->refresh_groups }, # refresh
+       sub ($$$) { PublicInbox::NNTP->new($_[0], $nntpd) }); # post_accept
 
 1;
 package PublicInbox::NNTPD;