1
0
Fork 0

feat(v2raya): enhance configuration and update documentation

- add multiple proxy port configurations (socks5, http, http with shunt rule)
- update docker-compose to use environment variables for proxy ports
- improve volume configuration with timezone and kernel modules
- clean up readme by removing build status badges and usage sections
- update logo image

📝 docs(v2raya): simplify readme content

- remove docker build status badges and travis-ci build status
- remove language selection links and usage instructions
- remove screenshots, notices, acknowledgments and license sections
- keep only essential project description and repository link
This commit is contained in:
pooneyy 2025-11-09 23:47:10 +08:00
parent 278a3be6d8
commit 3c707e166b
No known key found for this signature in database
4 changed files with 47 additions and 55 deletions

View File

@ -1,23 +1,52 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: V2RAYA_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 2017
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
labelEn: WebUI Port
label:
en: WebUI port
zh: WebUI 端口
required: true
rule: paramPort
type: number
- default: 20170
edit: true
envKey: SOCKS5_PROXY_PORT
labelZh: Socks5 代理端口
labelEn: Socks5 Proxy Port
label:
en: Socks5 Proxy Port
zh: Socks5 代理端口
required: true
rule: paramPort
type: number
- default: 20171
edit: true
envKey: HTTP_PROXY_PORT
labelZh: WebUI 端口
labelEn: WebUI port
label:
en: HTTP Proxy Port
zh: HTTP 代理端口
required: true
rule: paramPort
type: number
- default: 20172
edit: true
envKey: HTTP_SHUNT_PROXY_PORT
labelZh: HTTP 代理端口(带分流规则)
labelEn: HTTP Port(Usage Shunt Rule)
label:
en: HTTP Port
zh: HTTP 代理端口
description:
en: Usage Shunt Rule
zh: 带分流规则
required: true
rule: paramPort
type: number

View File

@ -14,9 +14,13 @@ services:
privileged: true
ports:
- ${PANEL_APP_PORT_HTTP}:2017
- 20170-20172:20170-20172
- ${SOCKS5_PROXY_PORT}:20170
- ${HTTP_PROXY_PORT}:20171
- ${HTTP_SHUNT_PROXY_PORT}:20172
volumes:
- ${V2RAYA_ROOT_PATH}/v2raya:/etc/v2raya
- ./v2raya:/etc/v2raya
- /etc/localtime:/etc/localtime:ro
- /lib/modules:/lib/modules:ro
environment:
- V2RAYA_ADDRESS=0.0.0.0:2017
- V2RAYA_PLUGINLISTENPORT=32346

View File

@ -1,6 +1,4 @@
# 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
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)
@ -9,42 +7,3 @@ 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)
## 协议
[![License: AGPL v3-only](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 11 KiB