2 # Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
5 # Standalone HTTP server for public-inbox.
7 use PublicInbox::Daemon;
9 for (qw(Plack::Builder Plack::Util)) {
10 eval("require $_") or die "E: Plack is required for $0\n";
12 Plack::Builder->import;
13 require PublicInbox::HTTP;
14 require PublicInbox::HTTPD;
21 eval { $app = Plack::Util::load_psgi(@ARGV) };
24 "$0 runs in /, command-line paths must be absolute\n";
27 require PublicInbox::WWW;
28 my $www = PublicInbox::WWW->new;
31 eval { enable 'ReverseProxy' };
33 "Plack::Middleware::ReverseProxy missing,\n",
34 "URL generation for redirects may be wrong if behind a reverse proxy\n";
37 sub { $www->call(@_) };
42 PublicInbox::Daemon::run('0.0.0.0:8080', $refresh,
43 sub ($$$) { # post_accept
44 my ($client, $addr, $srv) = @_;
45 my $fd = fileno($srv);
46 my $h = $httpds{$fd} ||= PublicInbox::HTTPD->new($srv, $app);
47 PublicInbox::HTTP->new($client, $addr, $h),