mirror of
https://gitcode.com/waxgourd/addons
synced 2025-12-06 12:28:28 +08:00
添加HA加速器
This commit is contained in:
@@ -64,4 +64,8 @@ HA中有名的播放器
|
||||
|
||||
✓ [mi-scale](mi-scale/) :
|
||||
|
||||
小米体脂称插件
|
||||
小米体脂称插件
|
||||
|
||||
✓ [haos_turbo](haos_turbo/) :
|
||||
|
||||
HA加速器
|
||||
3
haos_turbo/CHANGELOG.md
Normal file
3
haos_turbo/CHANGELOG.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.2.4.6(5-1-2024)
|
||||
|
||||
- 首次提交
|
||||
40
haos_turbo/DOCS.md
Normal file
40
haos_turbo/DOCS.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# Haos Turbo
|
||||
|
||||
有Web GUI加速器客户端
|
||||
|
||||
|
||||
|
||||
## 配置说明
|
||||
|
||||
|
||||
### 使用后台服务:
|
||||
|
||||
选择后台服务的内核类型
|
||||
|
||||
### 配置版本:
|
||||
|
||||
使用配置文件的版本. 目前v1的兼容性较好。
|
||||
|
||||
### 加速域名:
|
||||
|
||||
(选项)加速的域名列表。
|
||||
|
||||
### 直连域名:
|
||||
|
||||
(选项)直连的域名列表。
|
||||
|
||||
### 加速IP(CIDR):
|
||||
|
||||
(选项)加速的IP地址(支持CIDR)。
|
||||
|
||||
### 直连IP(CIDR):
|
||||
|
||||
(选项)直连的IP地址(支持CIDR)。
|
||||
|
||||
### 关闭部分日志:
|
||||
|
||||
关闭部分日志(注意:调试时才开,否则日志会占用磁盘空间)
|
||||
|
||||
### 清除用户数据:
|
||||
|
||||
每次启动自动清除所有的用户数据(注意:卸载插件,用户数据不会删除)
|
||||
35
haos_turbo/README.md
Normal file
35
haos_turbo/README.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# 冬瓜甄选addons: Haos Turbo (HA加速)
|
||||
|
||||
|
||||
|
||||
超级的Home Assistant addons,有很好的下载加速功用。除了能对HA加速外,还可以提供网页访问代
|
||||
|
||||
理功能。用过的都说好。
|
||||
|
||||
|
||||
|
||||
**使用注意!使用疑难问答**
|
||||
|
||||
* 官方原版haos的系统,仅支持amd64(x86_64)系列
|
||||
* 冬瓜版本的haos系列,都支持。
|
||||
* 原版aarch64内核的有些功能不完整,有无法使用的情况。
|
||||
|
||||
* 此addon插件只能在HA启动后,服务启动配置完成之后才有效,因此不能对首次安装有加速作用。
|
||||
|
||||
* 本addon需要配合第三方订阅使用
|
||||
|
||||
* 由于全国各地本地ISP网络的不一样,特定地区有可能不能使用
|
||||
|
||||
|
||||
|
||||
### 首次配置和使用
|
||||
|
||||
* 默认选该加速器(可以选择多组负载均衡)
|
||||
* 启动该加速器服务后(代理服务未启动)
|
||||
* 进入 http://<HOME-ASSISTANT-HOSTIP>:2017
|
||||
* 注册 用户名密码 并记牢
|
||||
* 进入"设置"
|
||||
* 关闭"开启IP转发",打开"开机端口分享"
|
||||
* 左上角启动服务
|
||||
|
||||
更多功能使用,请另行上网搜索
|
||||
59
haos_turbo/config.yaml
Normal file
59
haos_turbo/config.yaml
Normal file
@@ -0,0 +1,59 @@
|
||||
---
|
||||
version: v2.2.4.6-2
|
||||
slug: haos_turbo
|
||||
name: HAOS加速器
|
||||
description: Home Assistant系统加速器
|
||||
url: https://github.com/v2raya/addons
|
||||
arch:
|
||||
- aarch64
|
||||
- amd64
|
||||
hassio_api: true
|
||||
host_network: true
|
||||
image: xyyyhtl/v2raya
|
||||
init: false
|
||||
boot: manual
|
||||
map:
|
||||
- addons:rw
|
||||
- addon_config:rw
|
||||
- backup:rw
|
||||
- homeassistant_config:rw
|
||||
- media:rw
|
||||
- share:rw
|
||||
- backup:rw
|
||||
- ssl:rw
|
||||
udev: true
|
||||
ports_description:
|
||||
2017/tcp: 'Web UI port'
|
||||
webui: "http://[HOST]:[PORT:2017]/"
|
||||
ports:
|
||||
2017/tcp: 2017
|
||||
privileged:
|
||||
- SYS_ADMIN
|
||||
- NET_ADMIN
|
||||
- NET_RAW
|
||||
- DAC_READ_SEARCH
|
||||
apparmor: true
|
||||
devicetree: false
|
||||
options:
|
||||
bin_app: v2ray-core
|
||||
tun_config: v1
|
||||
proxy_domains: []
|
||||
direct_domains: []
|
||||
proxy_ipcidr: []
|
||||
direct_ipcidr: []
|
||||
logger_disable : true
|
||||
clear_mode: false
|
||||
schema:
|
||||
bin_app: list(v2ray-core|xray-core)
|
||||
tun_config: list(v1|v2)
|
||||
proxy_domains:
|
||||
- str?
|
||||
direct_domains:
|
||||
- str?
|
||||
proxy_ipcidr:
|
||||
- str?
|
||||
direct_ipcidr:
|
||||
- str?
|
||||
logger_disable: bool
|
||||
clear_mode: bool
|
||||
startup: services
|
||||
BIN
haos_turbo/icon.png
Normal file
BIN
haos_turbo/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 79 KiB |
BIN
haos_turbo/logo.png
Normal file
BIN
haos_turbo/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
34
haos_turbo/translations/en.yaml
Normal file
34
haos_turbo/translations/en.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
configuration:
|
||||
bin_app:
|
||||
name: UseBinApp
|
||||
description: >-
|
||||
Select v2raya call service v2ray-core or xray-core.
|
||||
tun_config:
|
||||
name: ConfigVersion
|
||||
description: >-
|
||||
Select config file version. default v1.
|
||||
proxy_domains:
|
||||
name: DomainByProxy
|
||||
description: >-
|
||||
Select Domain by proxy channel
|
||||
direct_domains:
|
||||
name: DomainByDirect
|
||||
description: >-
|
||||
Select Domain by direct channel
|
||||
proxy_ipcidr:
|
||||
name: IPcidrByProxy
|
||||
description: >-
|
||||
Select ip/cidr by proxy channel
|
||||
direct_ipcidr:
|
||||
name: IPcidrByDirect
|
||||
description: >-
|
||||
Select ip/cidr by direct channel
|
||||
logger_disable:
|
||||
name: DisableLogger
|
||||
description: >-
|
||||
disable proxy logger file
|
||||
clear_mode:
|
||||
name: ClearUserData
|
||||
description: >-
|
||||
clear user data, all data
|
||||
34
haos_turbo/translations/zh-Hans.yaml
Normal file
34
haos_turbo/translations/zh-Hans.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
configuration:
|
||||
bin_app:
|
||||
name: 使用后台服务
|
||||
description: >-
|
||||
选择后台服务是 v2ray-core 还是 xray-core.
|
||||
tun_config:
|
||||
name: 配置版本
|
||||
description: >-
|
||||
使用配置文件的版本. 目前v1的兼容性较好.
|
||||
proxy_domains:
|
||||
name: 加速域名
|
||||
description: >-
|
||||
需要加速的域名列表
|
||||
direct_domains:
|
||||
name: 直连域名
|
||||
description: >-
|
||||
选择直连的域名列表
|
||||
proxy_ipcidr:
|
||||
name: 加速IP(CIDR)
|
||||
description: >-
|
||||
加速的IP地址(支持CIDR)
|
||||
direct_ipcidr:
|
||||
name: 直连IP(支持CIDR)
|
||||
description: >-
|
||||
直连的IP地址(支持CIDR)
|
||||
logger_disable:
|
||||
name: 关闭部分日志
|
||||
description: >-
|
||||
关闭部分日志(注意:调试时才开,否则日志会占用磁盘空间)
|
||||
clear_mode:
|
||||
name: 清除用户数据
|
||||
description: >-
|
||||
每次启动自动清除所有的用户数据(注意:卸载插件,用户数据不会删除)
|
||||
Reference in New Issue
Block a user