diff --git a/apps/v2raya/2.0.5/.env.sample b/apps/v2raya/2.0.5/.env.sample new file mode 100644 index 00000000..55f577ce --- /dev/null +++ b/apps/v2raya/2.0.5/.env.sample @@ -0,0 +1,5 @@ +CONTAINER_NAME="v2raya" +PANEL_APP_PORT_HTTP="40052" +PLUGIN_PORT="32346" +PASSWORD="Password" +DATA_PATH="./data" \ No newline at end of file diff --git a/apps/v2raya/2.0.5/data.yml b/apps/v2raya/2.0.5/data.yml new file mode 100644 index 00000000..4a915841 --- /dev/null +++ b/apps/v2raya/2.0.5/data.yml @@ -0,0 +1,33 @@ +additionalProperties: + formFields: + - default: 40052 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: WebUI Port + labelZh: 网页端口 + required: true + rule: paramPort + type: number + - default: 32346 + edit: true + envKey: PLUGIN_PORT + labelEn: Internal plug-in port + labelZh: 内部插件端口 + required: true + rule: paramPort + type: number + - default: v2raya + envKey: PASSWORD + labelEn: Password + labelZh: 密码 + random: true + required: true + rule: paramComplexity + type: password + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text diff --git a/apps/v2raya/2.0.5/docker-compose.yml b/apps/v2raya/2.0.5/docker-compose.yml new file mode 100644 index 00000000..d96b4b8b --- /dev/null +++ b/apps/v2raya/2.0.5/docker-compose.yml @@ -0,0 +1,21 @@ +version: "3" +services: + v2raya: + container_name: ${CONTAINER_NAME} + restart: always + network_mode: "host" + privileged: true + environment: + - V2RAYA_CONFIG:/etc/v2raya + - V2RAYA_WEBDIR:/etc/v2raya/web + - V2RAYA_ADDRESS=0.0.0.0:${PANEL_APP_PORT_HTTP} + - V2RAYA_RESET_PASSWORD:${PASSWORD} + - V2RAYA_PLUGINLISTENPORT:${PLUGIN_PORT} + volumes: + - "${DATA_PATH}/v2raya:/etc/v2raya" + - "${DATA_PATH}/web:/etc/v2raya/web" + - /lib/modules:/lib/modules:ro + - /etc/resolv.conf:/etc/resolv.conf + image: mzz2017/v2raya:2.0.5 + labels: + createdBy: "Apps" diff --git a/apps/v2raya/README.md b/apps/v2raya/README.md new file mode 100644 index 00000000..b1dd61ee --- /dev/null +++ b/apps/v2raya/README.md @@ -0,0 +1,50 @@ +# v2rayA [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/v2rayA/v2raya)](https://hub.docker.com/r/mzz2017/v2raya) [![Travis (.org)](https://img.shields.io/travis/v2rayA/v2rayA?label=travis-ci%20build)](https://travis-ci.org/v2rayA/v2rayA) + +[**English**](https://github.com/v2rayA/v2rayA/blob/feat_v5/README.md)   [**简体中文**](https://github.com/v2rayA/v2rayA/blob/feat_v5/README_zh.md) + +v2rayA 是一个支持全局透明代理的 V2Ray Linux 客户端,同时兼容SS、SSR、Trojan(trojan-go)、[PingTunnel](https://github.com/esrrhs/pingtunnel)协议。 [[SSR支持清单]](https://github.com/v2rayA/dist/shadowsocksR/blob/master/README.md#ss-encrypting-algorithm) + +v2rayA 致力于提供最简单的操作,满足绝大部分需求。 + +得益于Web客户端的优势,你不仅可以将其用于本地计算机,还可以轻松地将它部署在路由器或NAS上。 + +项目地址:https://github.com/v2rayA/v2rayA + + +## 使用方法 + +v2rayA主要提供了下述使用方法: + +1. 软件源安装 +2. docker +3. 二进制文件、安装包 + +详见 [**v2rayA - Docs**](https://v2raya.org/docs/prologue/introduction/) + + +## 界面截图 + + + + +## 注意 + +1. 程序不会将任何用户数据保存在云端,所有用户数据存放在用户本地配置文件中。 + +2. **不要将本项目用于不合法用途。** + +## 感谢 + +[hq450/fancyss](https://github.com/hq450/fancyss) + +[ToutyRater/v2ray-guide](https://github.com/ToutyRater/v2ray-guide/blob/master/routing/sitedata.md) + +[nadoo/glider](https://github.com/nadoo/glider) + +[Loyalsoldier/v2ray-rules-dat](https://github.com/Loyalsoldier/v2ray-rules-dat) + +[zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy/blob/master/ss-tproxy) + +## 协议 + +[![License: AGPL v3-only](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) diff --git a/apps/v2raya/data.yml.bak b/apps/v2raya/data.yml.bak new file mode 100644 index 00000000..122534d5 --- /dev/null +++ b/apps/v2raya/data.yml.bak @@ -0,0 +1,20 @@ +name: v2rayA +tags: + - 工具 +title: 支持全局透明代理的Project V 的Linux客户端 +type: 工具 +description: 支持全局透明代理的Project V 的Linux客户端 +additionalProperties: + key: v2raya + name: v2rayA + tags: + - Tool + shortDescZh: 支持全局透明代理的Project V 的Linux客户端 + shortDescEn: A web GUI client of Project V + type: tool + crossVersionUpdate: true + limit: 1 + recommend: 0 + website: https://v2raya.org + github: https://github.com/v2rayA/v2rayA + document: https://v2raya.org/docs/prologue/introduction/ diff --git a/apps/v2raya/latest/.env.sample b/apps/v2raya/latest/.env.sample new file mode 100644 index 00000000..55f577ce --- /dev/null +++ b/apps/v2raya/latest/.env.sample @@ -0,0 +1,5 @@ +CONTAINER_NAME="v2raya" +PANEL_APP_PORT_HTTP="40052" +PLUGIN_PORT="32346" +PASSWORD="Password" +DATA_PATH="./data" \ No newline at end of file diff --git a/apps/v2raya/latest/data.yml b/apps/v2raya/latest/data.yml new file mode 100644 index 00000000..4a915841 --- /dev/null +++ b/apps/v2raya/latest/data.yml @@ -0,0 +1,33 @@ +additionalProperties: + formFields: + - default: 40052 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: WebUI Port + labelZh: 网页端口 + required: true + rule: paramPort + type: number + - default: 32346 + edit: true + envKey: PLUGIN_PORT + labelEn: Internal plug-in port + labelZh: 内部插件端口 + required: true + rule: paramPort + type: number + - default: v2raya + envKey: PASSWORD + labelEn: Password + labelZh: 密码 + random: true + required: true + rule: paramComplexity + type: password + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text diff --git a/apps/v2raya/latest/docker-compose.yml b/apps/v2raya/latest/docker-compose.yml new file mode 100644 index 00000000..51919ef2 --- /dev/null +++ b/apps/v2raya/latest/docker-compose.yml @@ -0,0 +1,21 @@ +version: "3" +services: + v2raya: + container_name: ${CONTAINER_NAME} + restart: always + network_mode: "host" + privileged: true + environment: + - V2RAYA_CONFIG:/etc/v2raya + - V2RAYA_WEBDIR:/etc/v2raya/web + - V2RAYA_ADDRESS=0.0.0.0:${PANEL_APP_PORT_HTTP} + - V2RAYA_RESET_PASSWORD:${PASSWORD} + - V2RAYA_PLUGINLISTENPORT:${PLUGIN_PORT} + volumes: + - "${DATA_PATH}/v2raya:/etc/v2raya" + - "${DATA_PATH}/web:/etc/v2raya/web" + - /lib/modules:/lib/modules:ro + - /etc/resolv.conf:/etc/resolv.conf + image: mzz2017/v2raya:latest + labels: + createdBy: "Apps" diff --git a/apps/v2raya/logo.png b/apps/v2raya/logo.png new file mode 100644 index 00000000..023fe72d Binary files /dev/null and b/apps/v2raya/logo.png differ