diff options
| author | Hamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com> | 2023-05-30 23:51:14 +0300 |
|---|---|---|
| committer | Hamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com> | 2023-05-30 23:51:14 +0300 |
| commit | 8170b65db4d38002f81825ea876dd3e4c9292931 (patch) | |
| tree | 06e20a3835bf953f17cc50aafd48d367574e5357 /web/assets | |
| parent | a2d8c98b0df39216787d2c77af6e499857510e9e (diff) | |
add an option for webDomain
Diffstat (limited to 'web/assets')
| -rw-r--r-- | web/assets/js/model/models.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/assets/js/model/models.js b/web/assets/js/model/models.js index 9a5dcc85..e1a766dc 100644 --- a/web/assets/js/model/models.js +++ b/web/assets/js/model/models.js @@ -168,6 +168,7 @@ class AllSetting { constructor(data) { this.webListen = ""; + this.webDomain = ""; this.webPort = 2053; this.webCertFile = ""; this.webKeyFile = ""; @@ -187,7 +188,7 @@ class AllSetting { this.subEnable = false; this.subListen = ""; this.subPort = "2096"; - this.subPath = "sub/"; + this.subPath = "/sub/"; this.subDomain = ""; this.subCertFile = ""; this.subKeyFile = ""; |
