Singapore (SG-V2Ray)

  • Vmess WS (3 Days)
  • Active for 3 Days
  • sg-v2ray.ipracevpn.com:80
``` --- ### File 2: `vmess-tcp-http.php` Buat file baru bernama `vmess-tcp-http.php`. Salin kode `vmess-ws.php` di atas, dan ubah 3 hal: 1. ``: Ganti menjadi `Free Vmess TCP (HTTP) Servers` 2. Menu Aktif: Hapus `class="active"` dari "Vmess WebSocket" dan tambahkan ke `<li><a href="vmess-tcp-http.php" class="active">Vmess TCP (HTTP)</a></li>` 3. SQL Query: Ganti `WHERE i.protocol_type = 'vmess' AND i.net = 'ws'` menjadi: ```sql WHERE i.protocol_type = 'vmess' AND i.net = 'tcp' AND i.header_type = 'http' ``` --- ### File 3: `vless-reality.php` Buat file baru bernama `vless-reality.php`. Salin kode `vmess-ws.php`, dan ubah 3 hal: 1. `<title>`: Ganti menjadi `Free Vless TCP Reality Servers` 2. Menu Aktif: Hapus `class="active"` dari `<a>` Vmess, dan tambahkan ke `<a>` Vless: `<a href="javascript:void(0);" class="dropdown-toggle active">` 3. SQL Query: Ganti `WHERE i.protocol_type = 'vmess' AND i.net = 'ws'` menjadi: ```sql WHERE i.protocol_type = 'vless' ``` --- ### File 4: `ss-aes.php` Buat file baru bernama `ss-aes.php`. Salin kode `vmess-ws.php`, dan ubah 3 hal: 1. `<title>`: Ganti menjadi `Free Shadowsocks (AES) Servers` 2. Menu Aktif: Pindahkan `class="active"` ke `<a>` Shadowsocks dan link `<li><a href="ss-aes.php" class="active">SS TCP (AES)</a></li>` 3. SQL Query: Ganti `WHERE i.protocol_type = 'vmess' AND i.net = 'ws'` menjadi: ```sql WHERE i.protocol_type = 'ss' AND i.ss_method = 'aes-256-gcm' AND i.net = 'tcp' ``` --- ### File 5: `ss-blake3.php` Buat file baru bernama `ss-blake3.php`. Salin kode `vmess-ws.php`, dan ubah 3 hal: 1. `<title>`: Ganti menjadi `Free Shadowsocks TCP (Blake3) Servers` 2. Menu Aktif: Pindahkan `class="active"` ke `<a>` Shadowsocks dan link `<li><a href="ss-blake3.php" class="active">SS TCP (Blake3)</a></li>` 3. SQL Query: Ganti `WHERE i.protocol_type = 'vmess' AND i.net = 'ws'` menjadi: ```sql WHERE i.protocol_type = 'ss' AND i.ss_method LIKE '2022-blake3%' AND i.net = 'tcp' ``` --- ### File 6: `ss-ws.php` Buat file baru bernama `ss-ws.php`. Salin kode `vmess-ws.php`, dan ubah 3 hal: 1. `<title>`: Ganti menjadi `Free Shadowsocks WS (Blake3) Servers` 2. Menu Aktif: Pindahkan `class="active"` ke `<a>` Shadowsocks dan link `<li><a href="ss-ws.php" class="active">SS WS (Blake3)</a></li>` 3. SQL Query: Ganti `WHERE i.protocol_type = 'vmess' AND i.net = 'ws'` menjadi: ```sql WHERE i.protocol_type = 'ss' AND i.ss_method LIKE '2022-blake3%' AND i.net = 'ws'