Advertisement
tonylight2016

vmess-config

Jan 5th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. {
  2. "inbounds": [
  3. {
  4. "port": 1080, // SOCKS 代理端口,在浏览器中需配置代理并指向这个端口
  5. "listen": "127.0.0.1",
  6. "protocol": "socks",
  7. "settings": {
  8. "udp": true
  9. }
  10. }
  11. ],
  12. "outbounds": [
  13. {
  14. "protocol": "vmess",
  15. "settings": {
  16. "vnext": [
  17. {
  18. "address": "server", // 服务器地址,请修改为你自己的服务器 ip 或域名
  19. "port": 10086, // 服务器端口
  20. "users": [
  21. {
  22. "id": "b831381d-6324-4d53-ad4f-8cda48b30811"
  23. }
  24. ]
  25. }
  26. ]
  27. }
  28. },
  29. {
  30. "protocol": "freedom",
  31. "tag": "direct"
  32. }
  33. ],
  34. "routing": {
  35. "domainStrategy": "IPOnDemand",
  36. "rules": [
  37. {
  38. "type": "field",
  39. "ip": [
  40. "geoip:private"
  41. ],
  42. "outboundTag": "direct"
  43. }
  44. ]
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement