mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-01-17 17:47:57 +08:00
Delete appstore directory
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
# 数据持久化路径 [必填]
|
||||
JPROXY_ROOT_PATH=/home/jproxy
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8117
|
||||
|
||||
# 运行参数 [必填]
|
||||
JAVA_OPTS=-Xms512m -Xmx512m
|
||||
|
||||
# 缓存过期时间 (分钟) [必填]
|
||||
CACHE_EXPIRES=4320
|
||||
|
||||
# 登录过期时间 (分钟) [必填]
|
||||
TOKEN_EXPIRES=10080
|
||||
|
||||
# 同步间隔 (分钟) [必填]
|
||||
SYNC_INTERVAL=3
|
||||
|
||||
# 允许文件重命名 [必填]
|
||||
RENAME_FILE=true
|
||||
|
||||
# 追加语言标题 (结果小于设定值) [必填]
|
||||
MIN_COUNT=6
|
||||
|
||||
# 索引器结果缓存过期时间 (分钟) [必填]
|
||||
INDEXER_RESULT_CACHE_EXPIRES=15
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/jproxy"
|
||||
edit: true
|
||||
envKey: JPROXY_ROOT_PATH
|
||||
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
|
||||
@@ -1,23 +0,0 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
jproxy:
|
||||
container_name: jproxy
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- PUID=0
|
||||
- PGID=0
|
||||
- TZ=Asia/Shanghai
|
||||
image: luckypuppy514/jproxy:v3.4.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8117
|
||||
restart: always
|
||||
volumes:
|
||||
- ${JPROXY_ROOT_PATH}/data:/app/database
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,45 +0,0 @@
|
||||
# JProxy
|
||||
|
||||
介于 Sonarr / Radarr 和 Jackett / Prowlarr 之间的代理,主要用于优化查询和提升识别率
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 使用说明
|
||||
|
||||
> 默认用户名: 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
|
||||
```
|
||||
|
||||
---
|
||||
|
||||

|
||||
@@ -1,14 +0,0 @@
|
||||
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.
|
Before Width: | Height: | Size: 210 KiB |
Reference in New Issue
Block a user