mirror of
https://github.com/okxlin/appstore.git
synced 2026-02-22 10:57:39 +08:00
feat:添加v2rayA到测试
This commit is contained in:
parent
28c9f90545
commit
4ed0f5d99d
5
apps/v2raya/2.0.5/.env.sample
Normal file
5
apps/v2raya/2.0.5/.env.sample
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER_NAME="v2raya"
|
||||
PANEL_APP_PORT_HTTP="40052"
|
||||
PLUGIN_PORT="32346"
|
||||
PASSWORD="Password"
|
||||
DATA_PATH="./data"
|
||||
33
apps/v2raya/2.0.5/data.yml
Normal file
33
apps/v2raya/2.0.5/data.yml
Normal file
@ -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
|
||||
21
apps/v2raya/2.0.5/docker-compose.yml
Normal file
21
apps/v2raya/2.0.5/docker-compose.yml
Normal file
@ -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"
|
||||
50
apps/v2raya/README.md
Normal file
50
apps/v2raya/README.md
Normal file
@ -0,0 +1,50 @@
|
||||
# v2rayA [](https://hub.docker.com/r/mzz2017/v2raya) [](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/)
|
||||
|
||||
|
||||
## 界面截图
|
||||
|
||||
<img src="https://i.loli.net/2020/04/19/kp2oedPiSzVwgHJ.png" border="0">
|
||||
|
||||
|
||||
## 注意
|
||||
|
||||
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)
|
||||
|
||||
## 协议
|
||||
|
||||
[](https://www.gnu.org/licenses/agpl-3.0)
|
||||
20
apps/v2raya/data.yml.bak
Normal file
20
apps/v2raya/data.yml.bak
Normal file
@ -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/
|
||||
5
apps/v2raya/latest/.env.sample
Normal file
5
apps/v2raya/latest/.env.sample
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER_NAME="v2raya"
|
||||
PANEL_APP_PORT_HTTP="40052"
|
||||
PLUGIN_PORT="32346"
|
||||
PASSWORD="Password"
|
||||
DATA_PATH="./data"
|
||||
33
apps/v2raya/latest/data.yml
Normal file
33
apps/v2raya/latest/data.yml
Normal file
@ -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
|
||||
21
apps/v2raya/latest/docker-compose.yml
Normal file
21
apps/v2raya/latest/docker-compose.yml
Normal file
@ -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"
|
||||
BIN
apps/v2raya/logo.png
Normal file
BIN
apps/v2raya/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
Loading…
Reference in New Issue
Block a user