Skip to content

VLESS XHTTP

This is a family of "VLESS over a transport" nodes on Xray. The HTTP-based transports (XHTTP, WebSocket, gRPC, HTTPUpgrade) can pass through a CDN, so a node stays usable through the CDN after the VPS's IP is blocked.

CoresXray
Domain and certificateneeded by most modes; not by the REALITY layer or mKCP
Shared port 443yes for the TLS modes (--mount-443); not for mKCP
Common clientsrecent Xray-based clients such as v2rayN and v2rayNG

Seven modes

--modeName in the menuDomain and certificateNotes
xhttpXHTTP/SplitHTTPneededXray's newest HTTP transport; works through a CDN
wsWebSocketneededthe most compatible; works through a CDN
grpcgRPCneededmultiplexed; works through a CDN
httpupgradeHTTPUpgradeneededone framing layer less than WebSocket
h2HTTP/2neededcarried by XHTTP stream-one (Xray removed its old HTTP transport)
reality-layerReality layernot neededREALITY camouflage, with --reality-transport xhttp|grpc
mkcpmKCPnot neededUDP without TLS, disguised by a seed and header; copes with loss but uses noticeably more traffic

For the modes that need a domain, prepare the certificate as for Vision: point the domain at the VPS and issue it in main menu 10 (SSL certificates).

From the menu

Main menu 44 (Nodes)3 (XHTTP), then pick the mode.

Xray XHTTP node menu

From the command line

bash
# XHTTP (for WebSocket, gRPC and the rest, use ws, grpc, httpupgrade, h2)
psm node add xray xhttp --tag my-xhttp --port 2087 \
  --domain hk.example.com --mode xhttp

# REALITY layer, no domain needed
psm node add xray xhttp --tag my-xhttp-reality --port 8443 \
  --mode reality-layer --reality-transport xhttp

# mKCP (UDP)
psm node add xray xhttp --tag my-kcp --port 9000 --mode mkcp

For mKCP, --kcp-seed sets the obfuscation seed and --kcp-header the disguise header. It runs over UDP, so it cannot go on shared port 443; be careful on servers billed by traffic.

Export for clients

bash
psm node export xray xhttp my-xhttp

XHTTP share link

Released under the AGPL-3.0 license · For lawful use only; follow the laws where you live