Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2024-12-04 03:08:24 +00:00
parent c472f6b912
commit e8d6cc738d
1394 changed files with 42558 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# 数据持久化路径 [必填]
PROWLARR_ROOT_PATH=/home/prowlarr
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=9696
+16
View File
@@ -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
+24
View File
@@ -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
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+17
View File
@@ -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
+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
+17
View File
@@ -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
+76
View File
@@ -0,0 +1,76 @@
# Prowlarr
终极索引器管理器。
![Prowlarr](https://file.lifebus.top/imgs/prowlarr_cover.png)
Prowlarr 是一个基于流行 *arr .net/reactjs 基础堆栈的索引器管理/代理工具,旨在与您的各种 PVR 应用集成,支持对磁贴跟踪器和
Usenet 索引器的管理。
![](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)
## 特性
它与 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;
}
```
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
+15
View File
@@ -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