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;
20 eval { $app = Plack::Util::load_psgi(@ARGV) };
23 "$0 runs in /, command-line paths must be absolute\n";
26 require PublicInbox::WWW;
27 my $www = PublicInbox::WWW->new;
39 eval { enable 'ReverseProxy' };
41 "Plack::Middleware::ReverseProxy missing,\n",
42 "URL generation for redirects may be wrong if behind a reverse proxy\n";
45 sub { $www->call(@_) };
50 PublicInbox::Daemon::run('0.0.0.0:8080', $refresh,
51 sub ($$$) { # post_accept
52 my ($client, $addr, $srv) = @_;
53 my $fd = fileno($srv);
54 my $h = $httpds{$fd} ||= PublicInbox::HTTPD->new($srv, $app);
55 PublicInbox::HTTP->new($client, $addr, $h),