config_client.jsonc 959 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "log": {
  3. "loglevel": "warning"
  4. },
  5. "inbounds": [
  6. {
  7. "port": 1080,
  8. "listen": "127.0.0.1",
  9. "protocol": "socks",
  10. "settings": {
  11. "udp": true
  12. }
  13. }
  14. ],
  15. "outbounds": [
  16. {
  17. "protocol": "vless",
  18. "settings": {
  19. "vnext": [
  20. {
  21. "address": "{{ host }}",
  22. "port": {{ port }},
  23. "users": [
  24. {
  25. "id": "{{ uuid }}",
  26. "encryption": "none"
  27. }
  28. ]
  29. }
  30. ]
  31. },
  32. "streamSettings": {
  33. "network": "kcp",
  34. "kcpSettings": {
  35. "seed": "{{ seed }}"
  36. }
  37. }
  38. }
  39. ]
  40. }