发布应用x4

+ jproxy
+ prowlarr
+ radarr
+ sonarr

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
2024-09-20 15:37:55 +08:00
parent 6eae31826b
commit d3e2fc3efa
32 changed files with 711 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
additionalProperties:
formFields:
- default: "/home/jproxy"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8117
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "-Xms512m -Xmx512m"
edit: true
envKey: JAVA_OPTS
labelZh: 运行参数
labelEn: Run parameters
required: true
type: text
- default: 4320
edit: true
envKey: CACHE_EXPIRES
labelZh: 缓存过期时间 (分钟)
labelEn: Cache expiration time (minutes)
required: true
type: number
- default: 10080
edit: true
envKey: TOKEN_EXPIRES
labelZh: 登录过期时间 (分钟)
labelEn: Login expiration time (minutes)
required: true
type: number
- default: 3
edit: true
envKey: SYNC_INTERVAL
labelZh: 同步间隔 (分钟)
labelEn: Synchronization interval (minutes)
required: true
type: number
- default: "true"
edit: true
envKey: RENAME_FILE
labelZh: 允许文件重命名
labelEn: Allow file renaming
required: true
type: select
values:
- label: 允许
value: "true"
- label: 禁止
value: "false"
- default: 6
edit: true
envKey: MIN_COUNT
labelZh: 追加语言标题 (结果小于设定值)
labelEn: Append language title (result is less than the set value)
required: true
type: number
- default: 15
edit: true
envKey: INDEXER_RESULT_CACHE_EXPIRES
labelZh: 索引器结果缓存过期时间 (分钟)
labelEn: Indexer result cache expiration time (minutes)
required: true
type: number
+24
View File
@@ -0,0 +1,24 @@
networks:
1panel-network:
external: true
services:
jproxy:
image: luckypuppy514/jproxy:v3.4.4
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8117
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${PROWLARR_ROOT_PATH}/data:/app/database
environment:
- PUID=0
- PGID=0
- TZ=Asia/Shanghai
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+45
View File
@@ -0,0 +1,45 @@
# JProxy
介于 Sonarr / Radarr 和 Jackett / Prowlarr 之间的代理,主要用于优化查询和提升识别率
![Sonarr](https://file.lifebus.top/imgs/jproxy_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 使用说明
> 默认用户名: jproxy
>
> 默认密码: jproxy@2023
## 安装说明
### 开启代理服务
在运行参数添加以下配置:
> HTTP 代理
+ `-Dhttp.proxyHost` 代理服务器地址
+ `-Dhttp.proxyPort` 代理服务器端口
示例:
```shell
-Xms512m -Xmx512m -Dhttp.proxyHost=192.168.1.1 -Dhttp.proxyPort=7890
```
> SOCKS 代理
+ `-DsocksProxyHost` 代理服务器地址
+ `-DsocksProxyPort` 代理服务器端口
示例:
```shell
-Xms512m -Xmx512m -DsocksProxyHost=192.168.1.1 -DsocksProxyPort=7890
```
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
+14
View File
@@ -0,0 +1,14 @@
additionalProperties:
key: jproxy
name: JProxy
tags:
- WebSite
- Local
shortDescZh: 介于 Sonarr / Radarr 和 Jackett / Prowlarr 之间的代理,主要用于优化查询和提升识别率
shortDescEn: A proxy between Sonarr/Radarr and Jackett/Prowlarr, mainly used to optimize queries and improve recognition rate
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/LuckyPuppy514/jproxy/
github: https://github.com/LuckyPuppy514/jproxy/
document: https://github.com/LuckyPuppy514/jproxy/
Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB