Advertisement
Guest User

Untitled

a guest
Jul 9th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. {
  2. "log": {
  3. "access": "/var/log/v2ray/access.log",
  4. "error": "/var/log/v2ray/error.log",
  5. "loglevel": "warning"
  6. },
  7. "inbound": {
  8. "port": PORT,
  9. "protocol": "vmess",
  10. "settings": {
  11. "udp": true,
  12. "clients": [
  13. {
  14. "id": "UUID",
  15. "level": 1,
  16. "alterId": 233
  17. }
  18. ]
  19. },
  20. "streamSettings": {
  21. "network": "ws"
  22. }
  23. },
  24. "outbound": {
  25. "protocol": "freedom",
  26. "settings": {}
  27. },
  28. "outboundDetour": [
  29. {
  30. "protocol": "blackhole",
  31. "settings": {},
  32. "tag": "blocked"
  33. }
  34. ],
  35. "routing": {
  36. "strategy": "rules",
  37. "settings": {
  38. "rules": [
  39. {
  40. "type": "field",
  41. "ip": [
  42. "0.0.0.0/8",
  43. "10.0.0.0/8",
  44. "100.64.0.0/10",
  45. "127.0.0.0/8",
  46. "169.254.0.0/16",
  47. "172.16.0.0/12",
  48. "192.0.0.0/24",
  49. "192.0.2.0/24",
  50. "192.168.0.0/16",
  51. "198.18.0.0/15",
  52. "198.51.100.0/24",
  53. "203.0.113.0/24",
  54. "::1/128",
  55. "fc00::/7",
  56. "fe80::/10"
  57. ],
  58. "outboundTag": "blocked"
  59. }
  60. ]
  61. }
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement