]> git.proxmox.com Git - pve-manager.git/commitdiff
nodeconfig: allow up to 5 domains for now
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sun, 3 May 2020 14:36:02 +0000 (16:36 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sun, 3 May 2020 14:36:46 +0000 (16:36 +0200)
20 was a bit overkill, and we can increase this easily, decreasing
isn't that easy at all...

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/NodeConfig.pm

index 0c0f866fdfedb50df00eac8cf6042b409d1e0201..7084c8725806667062dc5f2a4977f22bea77752b 100644 (file)
@@ -8,8 +8,8 @@ use PVE::JSONSchema qw(get_standard_option);
 use PVE::Tools qw(file_get_contents file_set_contents lock_file);
 use PVE::ACME;
 
-# register up to 20 domain names
-my $MAXDOMAINS = 20;
+# register up to 5 domain names per node for now
+my $MAXDOMAINS = 5;
 
 my $node_config_lock = '/var/lock/pvenode.lock';