about summary refs log tree commit homepage
path: root/lib/PublicInbox/Config.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-01-02 03:09:30 +0000
committerEric Wong <e@80x24.org>2020-01-02 20:56:24 +0000
commit1988d730c0088e8b1f6193650c7ee929df8a2ed7 (patch)
tree91920176afd1fd05e2649204c530a68ca657b03a /lib/PublicInbox/Config.pm
parent78fe6a9e601fcf3ec2983c82edaeb825e61275cf (diff)
downloadpublic-inbox-1988d730c0088e8b1f6193650c7ee929df8a2ed7.tar.gz
Since the beginning of this project, we've implicitly supported
inboxes with multiple URLs by relying on the Host: header sent
by the client ($env->{HTTP_HOST}).

We now offer the option to explicitly configure multiple URLs for
every inbox along with the ability to do a best-effort match for
matching hostnames.
Diffstat (limited to 'lib/PublicInbox/Config.pm')
-rw-r--r--lib/PublicInbox/Config.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm
index 8ecf549d..ffc31f83 100644
--- a/lib/PublicInbox/Config.pm
+++ b/lib/PublicInbox/Config.pm
@@ -362,8 +362,8 @@ sub _fill {
         my ($self, $pfx) = @_;
         my $ibx = {};
 
-        foreach my $k (qw(inboxdir filter url newsgroup
-                        infourl watch watchheader httpbackendmax
+        foreach my $k (qw(inboxdir filter newsgroup
+                        watch watchheader httpbackendmax
                         replyto feedmax nntpserver indexlevel)) {
                 my $v = $self->{"$pfx.$k"};
                 $ibx->{$k} = $v if defined $v;
@@ -383,7 +383,8 @@ sub _fill {
         }
         # TODO: more arrays, we should support multi-value for
         # more things to encourage decentralization
-        foreach my $k (qw(address altid nntpmirror coderepo hide listid)) {
+        foreach my $k (qw(address altid nntpmirror coderepo hide listid url
+                        infourl)) {
                 if (defined(my $v = $self->{"$pfx.$k"})) {
                         $ibx->{$k} = _array($v);
                 }