vless-tls-client.json 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "log": {
  3. "loglevel": "debug"
  4. },
  5. "inbounds": [
  6. {
  7. "listen": "0.0.0.0",
  8. "port": "1080",
  9. "protocol": "socks",
  10. "settings": {
  11. "auth": "noauth",
  12. "udp": true,
  13. "ip": "127.0.0.1"
  14. }
  15. }
  16. ],
  17. "outbounds": [
  18. {
  19. "protocol": "vless",
  20. "settings": {
  21. "vnext": [
  22. {
  23. "address": "host.docker.internal",
  24. "port": 1234,
  25. "users": [
  26. {
  27. "id": "",
  28. "encryption": "none",
  29. "flow": ""
  30. }
  31. ]
  32. }
  33. ]
  34. },
  35. "streamSettings": {
  36. "network": "tcp",
  37. "security": "tls",
  38. "tlsSettings": {
  39. "serverName": "example.org",
  40. "certificates": [
  41. {
  42. "certificateFile": "/path/to/certificate.crt",
  43. "keyFile": "/path/to/private.key"
  44. }
  45. ],
  46. "fingerprint": "chrome"
  47. }
  48. }
  49. }
  50. ]
  51. }