test_6_server.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "log": {
  3. "loglevel": "debug"
  4. },
  5. "inbound": {
  6. "port": 50051,
  7. "listen": "127.0.0.1",
  8. "protocol": "shadowsocks",
  9. "settings": {
  10. "method": "aes-256-cfb",
  11. "password": "v2ray-password"
  12. },
  13. "streamSettings": {
  14. "network": "tcp",
  15. "tcpSettings": {
  16. "header": {
  17. "type": "http",
  18. "request": {},
  19. "response": {}
  20. }
  21. }
  22. }
  23. },
  24. "inboundDetour": [
  25. {
  26. "protocol": "shadowsocks",
  27. "port": 50055,
  28. "listen": "127.0.0.1",
  29. "settings": {
  30. "method": "aes-128-cfb",
  31. "password": "v2ray-another",
  32. "udp": true
  33. },
  34. "streamSettings": {
  35. "network": "tcp",
  36. "tcpSettings": {
  37. "header": {
  38. "type": "http",
  39. "request": {},
  40. "response": {}
  41. }
  42. }
  43. }
  44. },
  45. {
  46. "protocol": "shadowsocks",
  47. "port": 50056,
  48. "listen": "127.0.0.1",
  49. "settings": {
  50. "method": "chacha20",
  51. "password": "new-password",
  52. "udp": true
  53. }
  54. }
  55. ],
  56. "outbound": {
  57. "protocol": "freedom",
  58. "settings": {}
  59. }
  60. }