V2Ray如何开启错误日志和访问日志
-
请填写你的广告代码,或者删除本行文字。
在 Linux 中,服务端运行错误日志通常在
/var/log/v2ray/error.log
文件中。在 Linux 中,访问日志通常在
/var/log/v2ray/access.log
文件中。V2Ray的配置文件在/etc/v2ray/config.json
开启错误日志和访问日志,只需修改config.json
{ "log": { "access": "/var/log/v2ray/access.log", "error": "/var/log/v2ray/error.log" }, "inbound": { "port": 8001, "protocol": "vmess", "tag": "v2ray", "settings": { "clients": [ { "id": "xxxxxxx", "alterId": 64 } ] }, "streamSettings": { "network": "h2", "httpSettings": { "path": "/xxxxxxx" }, "security": "tls", "tlsSettings": { "certificates": [ { "certificateFile": "xxxxxxx", "keyFile": "xxxxxxx" } ] } } }, "inboundDetour": [ { "port": 8002, "protocol": "shadowsocks", "tag": "ss", "settings": { "method": "aes-256-cfb", "password": "xxxxxxx" } } ], "outbound": { "protocol": "freedom", "settings": {}, "tag": "direct" }, "outboundDetour": [ { "protocol": "blackhole", "settings": {}, "tag": "blocked" } ], "routing": { "strategy": "rules", "settings": { "domainStrategy": "IPOnDemand", "rules": [ { "type": "field", "ip": [ "geoip:private" ], "outboundTag": "blocked" }, { "type": "field", "inboundTag": "ss", "outboundTag": "direct" }, { "type": "field", "inboundTag": "v2ray", "outboundTag": "direct" }, { "type": "field", "domain": [ "geosite:cn" ], "outboundTag": "blocked" }, { "type": "field", "ip": [ "geoip:cn" ], "outboundTag": "blocked" } ] } } }
推荐阅读
请填写你的广告代码,或者删除本行文字。
版权声明: 本文除特别说明外均由 超级火箭 原创
本文链接: https://superrocket.net/jishu/1.html,尊重共享,欢迎转载,请自觉添加本文链接,谢谢!
分享本文: 请填写您的分享代码。
呃 本文暂时没人评论 来添加一个吧
发表评论