Update setting.js

This commit is contained in:
MehdiSele 2026-04-28 22:19:44 +03:30 committed by GitHub
parent 55dddcc447
commit ec11f99f59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ class AllSetting {
constructor(data) { constructor(data) {
this.webListen = ""; this.webListen = "";
this.webDomain = ""; this.webDomain = "";
this.webPort = 2053; this.webPort = 443;
this.webCertFile = ""; this.webCertFile = "";
this.webKeyFile = ""; this.webKeyFile = "";
this.webBasePath = "/"; this.webBasePath = "/";
@ -89,4 +89,4 @@ class AllSetting {
equals(other) { equals(other) {
return ObjectUtil.equals(this, other); return ObjectUtil.equals(this, other);
} }
} }