Tokumeikoi 4 ani în urmă
părinte
comite
d020ddf926
1 a modificat fișierele cu 12 adăugiri și 13 ștergeri
  1. 12 13
      app/Http/Controllers/Client/ClientController.php

+ 12 - 13
app/Http/Controllers/Client/ClientController.php

@@ -53,25 +53,24 @@ class ClientController extends Controller
         $uri = '';
         foreach ($server as $item) {
             $uri .= "vmess=" . $item->host . ":" . $item->port . ", method=none, password=" . $user->v2ray_uuid . ", fast-open=false, udp-relay=false, tag=" . $item->name;
-            if ($item->network == 'ws') {
+            if ($item->tls) {
+                $tlsSettings = json_decode($item->tlsSettings);
+                if ($item->network === 'tcp') $uri .= ', obfs=over-tls';
+                if (isset($tlsSettings->allowInsecure)) {
+                    // Default: tls-verification=true
+                    $uri .= ', tls-verification=' . ($tlsSettings->allowInsecure ? "false" : "true");
+                }
+                if (isset($tlsSettings->serverName)) {
+                    $uri .= ', obfs-host=' . $tlsSettings->serverName;
+                }
+            }
+            if ($item->network === 'ws') {
                 $uri .= ', obfs=' . ($item->tls ? 'wss' : 'ws');
                 if ($item->networkSettings) {
                     $wsSettings = json_decode($item->networkSettings);
                     if (isset($wsSettings->path)) $uri .= ', obfs-uri=' . $wsSettings->path;
                     if (isset($wsSettings->headers->Host)) $uri .= ', obfs-host=' . $wsSettings->headers->Host;
                 }
-            } else {
-                if ($item->tls) {
-                    $tlsSettings = json_decode($item->tlsSettings);
-                    $uri .= ', obfs=over-tls';
-                    if (isset($tlsSettings->allowInsecure)) {
-                        // Default: tls-verification=true
-                        $uri .= ', tls-verification=' . ($tlsSettings->allowInsecure ? "false" : "true");
-                    }
-                    if (isset($tlsSettings->serverName)) {
-                        $uri .= ', obfs-host=' . $tlsSettings->serverName;
-                    }
-                }
             }
             $uri .= "\r\n";
         }