Skip to content

Commit 63cd9ba

Browse files
authored
Merge pull request #3581 from davidindra/increase-max-domains-count
Fix: increase max number of domains to 100 (match with Let's Encrypt)
2 parents e3d4882 + 10ece35 commit 63cd9ba

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

backend/schema/definitions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"description": "Domain Names separated by a comma",
173173
"example": "*.jc21.com,blog.jc21.com",
174174
"type": "array",
175-
"maxItems": 30,
175+
"maxItems": 100,
176176
"uniqueItems": true,
177177
"items": {
178178
"type": "string",

backend/templates/_location.conf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
{% include "_hsts_map.conf" %}
2-
31
location {{ path }} {
42
proxy_set_header Host $host;
53
proxy_set_header X-Forwarded-Scheme $scheme;

frontend/js/app/nginx/certificates/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ module.exports = Mn.View.extend({
265265
this.ui.domain_names.selectize({
266266
delimiter: ',',
267267
persist: false,
268-
maxOptions: 30,
268+
maxOptions: 100,
269269
create: function (input) {
270270
return {
271271
value: input,

frontend/js/app/nginx/dead/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ module.exports = Mn.View.extend({
233233
this.ui.domain_names.selectize({
234234
delimiter: ',',
235235
persist: false,
236-
maxOptions: 30,
236+
maxOptions: 100,
237237
create: function (input) {
238238
return {
239239
value: input,

frontend/js/app/nginx/proxy/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ module.exports = Mn.View.extend({
271271
this.ui.domain_names.selectize({
272272
delimiter: ',',
273273
persist: false,
274-
maxOptions: 30,
274+
maxOptions: 100,
275275
create: function (input) {
276276
return {
277277
value: input,

frontend/js/app/nginx/redirection/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ module.exports = Mn.View.extend({
235235
this.ui.domain_names.selectize({
236236
delimiter: ',',
237237
persist: false,
238-
maxOptions: 30,
238+
maxOptions: 100,
239239
create: function (input) {
240240
return {
241241
value: input,

0 commit comments

Comments
 (0)