aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2019-10-21 13:53:46 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2019-10-21 13:53:46 +0300
commit7aed29afbb8b8bdd2b23f08faea19b61e2ead8ff (patch)
treeba27200023a09b29bc615aaa97ecbd3543059ee4
parent6183e90837e16fe162aa680c08b56d426d992d75 (diff)
downloadacmeman-7aed29afbb8b8bdd2b23f08faea19b61e2ead8ff.tar.gz
acmeman-7aed29afbb8b8bdd2b23f08faea19b61e2ead8ff.tar.bz2
Accept multiple hostnames in the ServerAlias directivev3.01
-rw-r--r--Changes3
-rw-r--r--lib/App/Acmeman.pm2
-rw-r--r--lib/App/Acmeman/Source/Apache.pm3
3 files changed, 6 insertions, 2 deletions
diff --git a/Changes b/Changes
index 61ba3da..06bca2b 100644
--- a/Changes
+++ b/Changes
@@ -1 +1,4 @@
+3.01 2019-10-20
+ - Accept multiple hostnames in the ServerAlias directive
+
3.00 2019-10-19
diff --git a/lib/App/Acmeman.pm b/lib/App/Acmeman.pm
index b54f7a4..afc64e9 100644
--- a/lib/App/Acmeman.pm
+++ b/lib/App/Acmeman.pm
@@ -26,3 +26,3 @@ use feature 'state';
-our $VERSION = '3.00';
+our $VERSION = '3.01';
diff --git a/lib/App/Acmeman/Source/Apache.pm b/lib/App/Acmeman/Source/Apache.pm
index 77d7e23..1c0e677 100644
--- a/lib/App/Acmeman/Source/Apache.pm
+++ b/lib/App/Acmeman/Source/Apache.pm
@@ -14,2 +14,3 @@ use Apache::Defaults;
use Apache::Config::Preproc;
+use Text::ParseWords;
@@ -98,3 +99,3 @@ sub examine_http_config {
$sect->directive('servername'));
- my @server_aliases = map { $self->dequote($_->value) }
+ my @server_aliases = map { quotewords('\s+', 0, $self->dequote($_->value)) }
$sect->directive('serveralias');

Return to:

Send suggestions and report system problems to the System administrator.