config.json 650 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "log": {
  3. "level": "info"
  4. },
  5. "dns": {
  6. "servers": [
  7. {
  8. "address": "tls://8.8.8.8"
  9. }
  10. ]
  11. },
  12. "inbounds": [
  13. {
  14. "type": "shadowsocks",
  15. "listen": "::",
  16. "listen_port": 8080,
  17. "network": "tcp",
  18. "method": "2022-blake3-aes-128-gcm",
  19. "password": "Gn1JUS14bLUHgv1cWDDp4A==",
  20. "multiplex": {
  21. "enabled": true,
  22. "padding": true
  23. }
  24. }
  25. ],
  26. "outbounds": [
  27. {
  28. "type": "direct"
  29. },
  30. {
  31. "type": "dns",
  32. "tag": "dns-out"
  33. }
  34. ],
  35. "route": {
  36. "rules": [
  37. {
  38. "port": 53,
  39. "outbound": "dns-out"
  40. }
  41. ]
  42. }
  43. }