mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-18 06:40:25 +08:00
11 lines
288 B
JavaScript
11 lines
288 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
this.changeAddr = function () {
|
||
|
|
if (this.serverType == "httpProxy") {
|
||
|
|
if (this.origin.addr.startsWith("http://")) {
|
||
|
|
this.origin.protocol = "http"
|
||
|
|
} else if (this.origin.addr.startsWith("https://")) {
|
||
|
|
this.origin.protocol = "https"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|