X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=examples%2Funsubscribe.psgi;h=7b97e25322d8395aad6a3a777132e2476de64715;hb=064811ca0fa11586159d0049476e64b70f7e34d1;hp=beeab9f89f0d7faf3b8fa16c2be58796b18381f5;hpb=8c7762b0d2a06b115669147d3945639d19ce5c06;p=public-inbox.git diff --git a/examples/unsubscribe.psgi b/examples/unsubscribe.psgi index beeab9f8..7b97e253 100644 --- a/examples/unsubscribe.psgi +++ b/examples/unsubscribe.psgi @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2016 all contributors +# Copyright (C) 2016-2020 all contributors # License: GPL-3.0+ # This should not require any other PublicInbox code, but may use # PublicInbox::Config if ~/.public-inbox/config exists or @@ -17,7 +17,8 @@ my $app = PublicInbox::Unsubscribe->new( # the archives runs as a different user. PublicInbox::Config->new('/home/pi/.public-inbox/config') }, - code_url => 'git://80x24.org/public-inbox.git', # change if you fork + # change if you fork + code_url => 'https://public-inbox.org/public-inbox.git', owner_email => 'BOFH@example.com', confirm => 0, @@ -60,7 +61,6 @@ my $app = PublicInbox::Unsubscribe->new( builder { mount '/u' => builder { - eval { enable 'Deflater' }; # optional eval { enable 'ReverseProxy' }; # optional enable 'Head'; sub { $app->call(@_) };