首次推出addns-go、calendar-poetry、frp-client;

升级了addons-data-migrate、frp-client-51、mpd。
This commit is contained in:
waxgourd
2024-10-15 19:56:43 +08:00
parent b42857e498
commit 9df15ece6d
32 changed files with 449 additions and 6 deletions

11
frp-client/CHANGELOG.md Normal file
View File

@@ -0,0 +1,11 @@
### 0.59.007-09-2024
- 版本升级
### 0.54.0-204-07-2024
- 版本升级
### 0.54.0 02-26-2024
- 首次推出

15
frp-client/DOCS.md Normal file
View File

@@ -0,0 +1,15 @@
# FRP Client
## 配置说明
1. 按照实际情况填写相关"配置"
1. 修改Home Assistant `config/configuration.yaml` 添加:
```yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 127.0.0.1
```
修改之后重启HA

14
frp-client/README.md Normal file
View File

@@ -0,0 +1,14 @@
# 冬瓜甄选addonsFRP Client
## 关于
您可以使用此工具通过端口转发实现对本地Home Assistant操作系统的远程访问。
## 本项目为Frp HA客户端
- 源码https://github.com/huxiaoxu2019/hass-addon-frp-client
- 文档https://gofrp.org/zh-cn/
- 依赖https://github.com/fatedier/frp
## 与 0.51 版本区别
- 配置:支持 TOML、YAML 和 JSON 进行配置。请注意INI 已弃用,并将在将来的版本中删除。新功能将仅在 TOML、YAML 或 JSON 中可用。需要这些新功能的用户应相应地切换其配置格式。

43
frp-client/config.yaml Normal file
View File

@@ -0,0 +1,43 @@
name: "FRP Client"
slug: "frp_client"
version: "0.59.0"
description: "您可以使用此工具通过端口转发实现对本地Home Assistant操作系统的远程访问"
url: https://gitcode.com/waxgourd/addons
host_network: true
startup: application
boot: "auto"
init: false
image: wghaos/frp-client
map:
- share:rw
privileged:
- NET_ADMIN
devices:
- /dev/net/tun
arch:
- aarch64
- amd64
options:
serverAddr: null
serverPort: null
authToken: null
webServerPort: null
webServerUser: null
webServerPassword: null
proxyType: http
customDomain: null
proxyName: "homeassistant"
localPort: 8123
remotePort: 8123
schema:
serverAddr: str
serverPort: int
authToken: str
webServerPort: int
webServerUser: str
webServerPassword: str
proxyType: list(http|tcp)
proxyName: str
customDomain: str?
localPort: int?
remotePort: int?

BIN
frp-client/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
frp-client/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,50 @@
---
configuration:
serverAddr:
name: serverAddr
description: >-
The address to connect to the server.
serverPort:
name: serverPort
description: >-
The default port for connecting to the server is 7000.
authToken:
name: authToken
description: >-
Token authentication.
webServerAddr:
name: webServerAddr
description: >-
Client AdminServer address configuration.
webServerPort:
name: webServerPort
decription: >-
Client AdminServer port configuration.
webServerUser:
name: webServerUser
description: >-
Client AdminServer user configuration.
webServerPassword:
name: webServerPassword
description: >-
Client AdminServer password configuration.
customDomain:
name: customDomain
description: >-
Custom field.
proxyName:
name: proxyName
description: >-
Agent name.
proxyType:
name: proxyType
description: >-
Agency Agreement.
localPort:
name: localPort
description: >-
Local port.
remotePort:
name: remotePort
description: >-
Remote_port.

View File

@@ -0,0 +1,50 @@
---
configuration:
serverAddr:
name: FRP服务端地址
description: >-
连接FRP服务端的地址。
serverPort:
name: FRP服务器端口
description: >-
连接FRP服务端的端口。
authToken:
name: 验证令牌
description: >-
身份验证令牌。
webServerAddr:
name: 客户端地址
description: >-
客户端 AdminServer地址配置。
webServerPort:
name: 端口配置
description: >-
客户端 AdminServer 端口配置。
webServerUser:
name: 用户名
description: >-
客户端 AdminServer 用户名配置。
webServerPassword:
name: 密码
description: >-
客户端 AdminServer 密码配置。
customDomain:
name: 自定义二级域名
description: >-
自定义二级域名(填写需要绑定的二级域名)。
proxyName:
name: 配置项名称
description: >-
该配置信息的名称(没特殊需求默认即可)。
proxyType:
name: 代理协议
description: >-
代理协议。
localPort:
name: Web本地端口
description: >-
HomeAssistant的Web本地端口。
remotePort:
name: Web访问端口
description: >-
HomeAssistant的Web访问端口。