# README
A buildin V2ray plugin for SSRPanel
Only one thing user should do is that setting up the database connection, without doing that user needn't do anything!
Features
- Sync user from SSRPanel database to v2ray
- Log user traffic
Benefits
- No other requirements
- It's able to run if you could launch v2ray core
- Less memory usage
- It just takes about 5MB to 10MB memories more than v2ray core
- Small RAM VPS would be joyful
- Simplicity configuration
Install on Linux
you may want to see docs, all the things as same as the official docs except install command.
curl -L -s https://raw.githubusercontent.com/elvischao/v2ray-ssrpanel-plugin/master/install-release.sh | sudo bash
Uninstall
curl -L -s https://raw.githubusercontent.com/elvischao/v2ray-ssrpanel-plugin/master/uninstall.sh | sudo bash
V2ray Configuration demo
{
"log": {
"loglevel": "debug"
},
"api": {
"tag": "api",
"services": [
"HandlerService",
"LoggerService",
"StatsService"
]
},
"stats": {},
"inbounds": [{
"port": 10086,
"protocol": "vmess",
"tag": "proxy"
},{
"listen": "127.0.0.1",
"port": 10085,
"protocol": "dokodemo-door",
"settings": {
"address": "127.0.0.1"
},
"tag": "api"
}],
"outbounds": [{
"protocol": "freedom"
}],
"routing": {
"rules": [{
"type": "field",
"inboundTag": [ "api" ],
"outboundTag": "api"
}],
"strategy": "rules"
},
"policy": {
"levels": {
"0": {
"statsUserUplink": true,
"statsUserDownlink": true
}
},
"system": {
"statsInboundUplink": true,
"statsInboundDownlink": true
}
},
"ssrpanel": {
// Node id on your SSR Panel
"nodeId": 1,
// every N seconds
"checkRate": 60,
// change this to true if you want to ignore users which has an empty vmess_id
"ignoreEmptyVmessID": false,
// user config
"user": {
// inbound tag, which inbound you would like add user to
"inboundTag": "proxy",
"level": 0,
"alterId": 16,
"security": "none"
},
// db connection
"mysql": {
"host": "127.0.0.1",
"port": 3306,
"user": "root",
"password": "your_pwd",
"dbname": "demo_db"
}
}
}
Contributing
Read WiKi carefully before submitting issues.
- Test and report bugs
- Share your needs/experiences in github issues
- Enhance documentation
- Contribute code by sending PR
References
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author