Vless-H2-TLS.jsonc 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "log": {
  3. "loglevel": "debug"
  4. },
  5. "inbounds": [
  6. {
  7. "listen": "127.0.0.1",
  8. "port": "1080",
  9. "protocol": "socks",
  10. "settings": {
  11. "udp": true
  12. }
  13. }
  14. ],
  15. "outbounds": [
  16. {
  17. "protocol": "vless",
  18. "settings": {
  19. "vnext": [
  20. {
  21. "address": "example.com",
  22. "port": 443,
  23. "users": [
  24. {
  25. "id": "90e4903e-66a4-45f7-abda-fd5d5ed7f797",
  26. "encryption": "none"
  27. }
  28. ]
  29. }
  30. ]
  31. },
  32. "streamSettings": {
  33. "network": "http",
  34. "httpSettings": {
  35. "path": "/vlh2"
  36. },
  37. "security": "tls",
  38. "tlsSettings": {
  39. "allowInsecure": false,
  40. "fingerprint": "chrome",
  41. "alpn": ["h2"],
  42. "serverName": "vlh2o.example.com" // Change to ssh2o.yourdomain.tld
  43. }
  44. }
  45. }
  46. ]
  47. }