config.json 635 B

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