Merge pull request #3581 from davidindra/increase-max-domains-count

Fix: increase max number of domains to 100 (match with Let's Encrypt)
This commit is contained in:
jc21 2024-02-27 11:36:04 +10:00 committed by GitHub
commit 63cd9ba08f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 5 additions and 7 deletions

View File

@ -172,7 +172,7 @@
"description": "Domain Names separated by a comma",
"example": "*.jc21.com,blog.jc21.com",
"type": "array",
"maxItems": 30,
"maxItems": 100,
"uniqueItems": true,
"items": {
"type": "string",

View File

@ -1,5 +1,3 @@
{% include "_hsts_map.conf" %}
location {{ path }} {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Scheme $scheme;

View File

@ -265,7 +265,7 @@ module.exports = Mn.View.extend({
this.ui.domain_names.selectize({
delimiter: ',',
persist: false,
maxOptions: 30,
maxOptions: 100,
create: function (input) {
return {
value: input,

View File

@ -233,7 +233,7 @@ module.exports = Mn.View.extend({
this.ui.domain_names.selectize({
delimiter: ',',
persist: false,
maxOptions: 30,
maxOptions: 100,
create: function (input) {
return {
value: input,

View File

@ -271,7 +271,7 @@ module.exports = Mn.View.extend({
this.ui.domain_names.selectize({
delimiter: ',',
persist: false,
maxOptions: 30,
maxOptions: 100,
create: function (input) {
return {
value: input,

View File

@ -235,7 +235,7 @@ module.exports = Mn.View.extend({
this.ui.domain_names.selectize({
delimiter: ',',
persist: false,
maxOptions: 30,
maxOptions: 100,
create: function (input) {
return {
value: input,