client.jsonc 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "inbounds": [
  3. {
  4. "sniffing": {
  5. "enabled": true,
  6. "destOverride": [
  7. "http",
  8. "tls",
  9. "quic"
  10. ]
  11. },
  12. "port": 10808,
  13. "listen": "127.0.0.1",
  14. "protocol": "socks",
  15. "settings": {
  16. "udp": true
  17. }
  18. }
  19. ],
  20. "outbounds": [
  21. {
  22. "protocol": "vless",
  23. "settings": {
  24. "vnext": [
  25. {
  26. "address": "example.com", // Change to your domain.
  27. "port": 443,
  28. "users": [
  29. {
  30. "id": "UUID", // Change to your UUID.
  31. "encryption": "none"
  32. }
  33. ]
  34. }
  35. ]
  36. },
  37. "streamSettings": {
  38. "network": "splithttp",
  39. "security": "tls",
  40. "splithttpSettings": {
  41. "path": "/splithttp",
  42. "host": "example.com" // Change to your domain.
  43. },
  44. "tlsSettings": {
  45. "serverName": "example.com", // Change to your domain.
  46. "alpn": [
  47. "h3"
  48. ]
  49. }
  50. }
  51. }
  52. ]
  53. }