发布应用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
+16
View File
@@ -0,0 +1,16 @@
additionalProperties:
formFields:
- default: "/home/sonarr"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8989
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
+27
View File
@@ -0,0 +1,27 @@
networks:
1panel-network:
external: true
services:
sonarr:
image: linuxserver/sonarr:4.0.9
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8989
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${PROWLARR_ROOT_PATH}/config:/config
- ${PROWLARR_ROOT_PATH}/tv:/tv
- ${PROWLARR_ROOT_PATH}/downloads:/downloads
environment:
- PUID=1000
- PGID=1000
- UMASK=022
- 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
+72
View File
@@ -0,0 +1,72 @@
# Sonarr
智能 PVR 适用于新闻组和 BT 用户。
![Sonarr](https://file.lifebus.top/imgs/sonarr_cover.png)
Sonarr 是为 Usenet 和 BitTorrent 用户设计的 PVR。它能够监控多个 RSS 订阅,寻找你喜爱的节目的新集,并抓取、整理和重命名它们。
![](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)
## 特性
+ 主要平台支持:WindowsLinuxmacOSRaspberry Pi 等。
+ 自动检测新集
+ 可以扫描您的现有库并下载任何缺失的剧集
+ 可以观看你已有的剧集的更高质量版本,并自动进行升级。例如,从 DVD 升级到蓝光。
+ 自动失败下载处理将在一个失败时尝试另一个版本
+ 手动搜索,以便您可以选择任何版本或查看未自动下载版本的原因
+ 完全可配置的集名重命名
+ 与 SABnzbd 和 NZBGet 的全面整合
+ 与 Kodi、Plex(通知、库更新、元数据)的全面整合
+ 全面支持特别节目和多集发布
+ 美观的 UI
## 反向代理
> Nginx
>
> BaseUrl 为 `/sonarr` 时的反向代理配置如下:
```nginx
location ^~ /sonarr {
proxy_pass http://127.0.0.1:8989;
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 External Access via NGINX
location ^~ /sonarr/api {
auth_basic off;
proxy_pass http://127.0.0.1:8989;
}
```
> 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:8989;
}
```
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
+15
View File
@@ -0,0 +1,15 @@
additionalProperties:
key: sonarr
name: Sonarr
tags:
- WebSite
- Storage
- Local
shortDescZh: 智能 PVR 适用于新闻组和 BT 用户。
shortDescEn: Smart PVR for newsgroup and bittorrent users.
type: website
crossVersionUpdate: true
limit: 0
website: https://sonarr.tv/
github: https://github.com/Sonarr/Sonarr/
document: https://wiki.sonarr.tv/
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB