mirror of
https://github.com/QYG2297248353/appstore-dpanel
synced 2025-12-29 08:01:36 +08:00
Synced apps from source repository via GitHub Actions
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
# 数据持久化路径 [必填]
|
||||
PROWLARR_ROOT_PATH=/home/prowlarr
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9696
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/prowlarr"
|
||||
edit: true
|
||||
envKey: PROWLARR_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 9696
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
@@ -0,0 +1,24 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
prowlarr:
|
||||
container_name: prowlarr
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- UMASK=022
|
||||
- TZ=Asia/Shanghai
|
||||
image: linuxserver/prowlarr:1.27.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:9696
|
||||
restart: always
|
||||
volumes:
|
||||
- ${PROWLARR_ROOT_PATH}/config:/config
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
@@ -0,0 +1,76 @@
|
||||
# Prowlarr
|
||||
|
||||
终极索引器管理器。
|
||||
|
||||

|
||||
|
||||
Prowlarr 是一个基于流行 *arr .net/reactjs 基础堆栈的索引器管理/代理工具,旨在与您的各种 PVR 应用集成,支持对磁贴跟踪器和
|
||||
Usenet 索引器的管理。
|
||||
|
||||

|
||||
|
||||
## 特性
|
||||
|
||||
它与 Lidarr、Mylar3、Radarr、Readarr 和 Sonarr 无缝集成,提供对您的索引器的全面管理,无需为每个应用单独设置索引器(我们全部为您完成)。
|
||||
|
||||
+ 本地支持 24 个索引器的 Usenet,包括 Headphones VIP
|
||||
+ 通过“通用 Newznab”对于任何 Newznab 兼容的索引器的 Usenet 支持
|
||||
+ 对超过 500 个跟踪器的种子支持,且不断添加更多
|
||||
+ 通过“通用 Torznab”支持任何与 Torznab 兼容的追踪器
|
||||
+ 通过 Cardigann 支持自定义 YML 定义,包括 JSON 和 XML 解析
|
||||
+ 索引器同步到 Lidarr/Mylar3/Radarr/Readarr/Sonarr,因此无需对其他应用程序进行手动配置
|
||||
+ 索引器历史和统计
|
||||
+ 手动在类别级别搜索追踪器和索引器
|
||||
+ 基于参数的手动搜索
|
||||
+ 支持一次直接将多个发布推送到您的下载客户端从 Prowlarr
|
||||
+ 索引器健康和状态通知
|
||||
+ 代理支持索引器(SOCKS4、SOCKS5、HTTP、Flaresolverr)
|
||||
|
||||
## 反向代理
|
||||
|
||||
> Nginx
|
||||
>
|
||||
> BaseUrl 为 `/prowlarr` 时的反向代理配置如下:
|
||||
|
||||
```nginx
|
||||
location /prowlarr {
|
||||
proxy_pass http://127.0.0.1:9696;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_redirect off;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
}
|
||||
|
||||
# Allow the API/Indexer External Access via NGINX
|
||||
location ~ /prowlarr(/[0-9]+)?/api {
|
||||
auth_basic off;
|
||||
proxy_pass http://127.0.0.1:9696;
|
||||
}
|
||||
```
|
||||
|
||||
> Nginx
|
||||
>
|
||||
> BaseUrl 为 `/` 时的反向代理配置如下:
|
||||
|
||||
```nginx
|
||||
location / {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
proxy_redirect off;
|
||||
proxy_http_version 1.1;
|
||||
|
||||
proxy_pass http://127.0.0.1:9696;
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||

|
||||
@@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: prowlarr
|
||||
name: Prowlarr
|
||||
tags:
|
||||
- WebSite
|
||||
- Storage
|
||||
- Local
|
||||
shortDescZh: 终极索引器管理器
|
||||
shortDescEn: The ultimate indexer manager
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://prowlarr.com/
|
||||
github: https://github.com/Prowlarr/Prowlarr/
|
||||
document: https://wiki.servarr.com/prowlarr/
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
Reference in New Issue
Block a user