vless-tls-server.json 744 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "log": {
  3. "loglevel": "debug"
  4. },
  5. "inbounds": [
  6. {
  7. "listen": "0.0.0.0",
  8. "port": 1234,
  9. "protocol": "vless",
  10. "settings": {
  11. "decryption": "none",
  12. "clients": [
  13. {
  14. "id": "b831381d-6324-4d53-ad4f-8cda48b30811",
  15. "flow": ""
  16. }
  17. ]
  18. },
  19. "streamSettings": {
  20. "network": "tcp",
  21. "security": "tls",
  22. "tlsSettings": {
  23. "serverName": "example.org",
  24. "certificates": [
  25. {
  26. "certificateFile": "/path/to/certificate.crt",
  27. "keyFile": "/path/to/private.key"
  28. }
  29. ]
  30. }
  31. }
  32. }
  33. ],
  34. "outbounds": [
  35. {
  36. "protocol": "freedom"
  37. }
  38. ]
  39. }