test_6_server.json 704 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "port": 50051,
  3. "inbound": {
  4. "listen": "127.0.0.1",
  5. "protocol": "shadowsocks",
  6. "settings": {
  7. "method": "aes-256-cfb",
  8. "password": "v2ray-password"
  9. }
  10. },
  11. "inboundDetour": [
  12. {
  13. "protocol": "shadowsocks",
  14. "port": 50055,
  15. "listen": "127.0.0.1",
  16. "settings": {
  17. "method": "aes-128-cfb",
  18. "password": "v2ray-another",
  19. "udp": true
  20. }
  21. },
  22. {
  23. "protocol": "shadowsocks",
  24. "port": 50056,
  25. "listen": "127.0.0.1",
  26. "settings": {
  27. "method": "chacha20",
  28. "password": "new-password",
  29. "udp": true
  30. }
  31. }
  32. ],
  33. "outbound": {
  34. "protocol": "freedom",
  35. "settings": {}
  36. }
  37. }