media-stack/README.md

273 lines
8.6 KiB
Markdown
Raw Normal View History

2023-05-05 07:57:27 +00:00
# media-stack
A stack of self-hosted media managers and streamer along with VPN.
## Requirements
- Docker version 23.0.5
- Docker compose version v2.17.3
## Install media stack
2022-08-09 11:36:55 +00:00
2022-08-12 09:45:01 +00:00
There are two media stacks available.
2022-07-05 15:01:32 +00:00
2022-08-12 09:45:01 +00:00
`stack-1` This stack contains Jellyfin, Radarr, Sonarr, Jackett and Transmission.
`stack-2` This stack contains Jellyfin, Radarr, Sonarr, Prowlarr, qBitTorrent and VPN.
2023-05-05 07:57:27 +00:00
Any one of them can be deployed using `--profile` option with docker compose command.
Specific tool which is not present in a stack can also be included using their profile name in `--profile`. For example, to include prowlarr with stack-1 we can use `--profile stack-1 --profile prowlarr` with docker compose command.
2022-07-05 15:01:32 +00:00
2022-07-18 12:49:22 +00:00
```
docker network create mynetwork
2022-08-09 14:51:31 +00:00
# Install Jellyfin, Radarr, Sonarr, Jackett and Transmission stack
2023-05-05 07:57:27 +00:00
docker compose --profile stack-1 up -d
2022-08-09 14:51:31 +00:00
2022-08-12 09:45:01 +00:00
# Or, Install Jellyfin, Radarr, Sonarr, Prowlarr, qBitTorrent and VPN stack
## By default NordVPN is configured. This can be changed to ExpressVPN, SurfShark, OpenVPN or Wireguard VPN by updating docker-compose.yml file. It uses OpenVPN type for all providers.
2022-08-12 13:17:35 +00:00
2023-05-05 07:57:27 +00:00
VPN_SERVICE_PROVIDER=nordvpn OPENVPN_USER=openvpn-username OPENVPN_PASSWORD=openvpn-password SERVER_REGIONS=Switzerland docker compose --profile stack-2 up -d
2022-08-09 14:51:31 +00:00
2023-05-05 07:57:27 +00:00
docker compose -f docker-compose-nginx.yml up -d # OPTIONAL to use Nginx as reverse proxy
2022-07-18 12:49:22 +00:00
```
2022-07-05 15:01:32 +00:00
2023-05-05 07:57:27 +00:00
## Configure Transmission / qBittorrent
2022-08-09 11:36:55 +00:00
For qBitTorrent,
- Open qBitTorrent at http://localhost:5080. Default username:password is admin:adminadmin
- Go to Tools --> Options --> WebUI --> Change password
For qBiTorrent / Transmission
2023-05-05 07:57:27 +00:00
- Run below commands
2022-08-09 11:36:55 +00:00
```
docker exec -it qbittorrent bash # Get inside qBittorrent container
2023-05-05 07:57:27 +00:00
# OR, docker exec -it transmission bash # Get inside transmission container
2022-08-09 14:51:31 +00:00
2022-08-09 11:36:55 +00:00
mkdir /downloads/movies /downloads/tvshows
chown 1000:1000 /downloads/movies /downloads/tvshows
```
2023-05-05 07:57:27 +00:00
## Add indexer to Jackett
2022-07-05 15:01:32 +00:00
- Open Jackett UI at http://localhost:9117
- Add indexer
2022-07-18 12:49:22 +00:00
- Search for torrent indexer (e.g. the pirates bay, YTS)
2022-07-05 15:01:32 +00:00
- Add selected
2023-05-05 07:57:27 +00:00
## Configure Radarr
2022-07-05 15:01:32 +00:00
- Open Radarr at http://localhost:7878
- Settings --> Media Management --> Check mark "Movies deleted from disk are automatically unmonitored in Radarr" under File management section --> Save
- Settings --> Indexers --> Add --> Add Rarbg indexer --> Add minimum seeder (4) --> Test --> Save
- Settings --> Indexers --> Add --> Torznab --> Follow steps from Jackett to add indexer
2022-08-12 09:45:01 +00:00
- Settings --> Download clients --> Transmission --> Add Host (transmission / qbittorrent) and port (9091 / 5080) --> Username and password if added --> Test --> Save **Note: If VPN is enabled, then transmission / qbittorrent is reachable on vpn's service name**
2022-07-06 08:12:56 +00:00
- Settings --> General --> Enable advance setting --> Select AUthentication and add username and password
2022-07-05 15:01:32 +00:00
2023-05-05 07:57:27 +00:00
## Add a movie
2022-07-05 15:01:32 +00:00
- Movies --> Search for a movie --> Add Root folder (/downloads) --> Quality profile --> Add movie
- Go to transmission (http://localhost:9091) and see if movie is getting downloaded.
2023-05-05 07:57:27 +00:00
## Configure Jellyfin
2022-07-05 15:01:32 +00:00
- Open Jellyfin at http://localhost:8096
- Configure as it asks for first time.
- Add media library folder and choose /data/movies/
2022-07-06 06:37:17 +00:00
2023-05-05 07:57:27 +00:00
## Configure Jackett
2022-07-06 08:12:56 +00:00
- Add admin password
2023-05-05 07:57:27 +00:00
## Configure Prowlarr
2022-08-09 14:51:31 +00:00
- Open Prowlarr at http://localhost:9696
- Settings --> General --> Authentications --> Select AUthentication and add username and password
- Add Indexers, Indexers --> Add Indexer --> Search for indexer --> Choose base URL --> Test and Save
- Add application, Settings --> Apps --> Add application --> Choose Sonarr or Radarr or any apps to link --> Prowlarr server (http://localhost:9696) --> Radarr server (http://localhost:7878) --> API Key --> Test and Save
- This will add indexers in respective apps automatically.
2023-05-05 07:57:27 +00:00
## Configure Nginx
2022-07-06 06:37:17 +00:00
- Get inside Nginx container
- `cd /etc/nginx/conf.d`
2023-05-05 07:57:27 +00:00
- Add proxies for all tools.
2022-07-18 12:49:22 +00:00
`docker cp nginx.conf nginx:/etc/nginx/conf.d/default.conf && docker exec -it nginx nginx -s reload`
2022-07-06 06:37:17 +00:00
- Close ports of other tools in firewall/security groups except port 80 and 443.
2023-05-05 07:57:27 +00:00
## Apply SSL in Nginx
- Open port 80 and 443.
- Get inside Nginx container and install certbot and certbot-nginx `apk add certbot certbot-nginx`
- Add URL in server block. e.g. `server_name localhost armdev.navratangupta.in;` in /etc/nginx/conf.d/default.conf
- Run `certbot --nginx` and provide details asked.
## Radarr Nginx reverse proxy
2022-07-06 06:37:17 +00:00
- Settings --> General --> URL Base --> Add base (/radarr)
- Add below proxy in nginx configuration
```
location /radarr {
proxy_pass http://radarr:7878;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2022-07-06 08:12:56 +00:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
2022-07-06 06:37:17 +00:00
}
```
2022-07-06 08:12:56 +00:00
- Restart containers.
2023-05-05 07:57:27 +00:00
## Sonarr Nginx reverse proxy
2022-07-10 15:28:25 +00:00
- Settings --> General --> URL Base --> Add base (/sonarr)
- Add below proxy in nginx configuration
```
location /radarr {
proxy_pass http://sonarr:8989;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
```
2023-05-05 07:57:27 +00:00
## Prowlarr Nginx reverse proxy
2022-08-09 14:51:31 +00:00
- Settings --> General --> URL Base --> Add base (/prowlarr)
- Add below proxy in nginx configuration
This may need to change configurations in indexers and base in URL.
```
location /prowlarr {
proxy_pass http://prowlarr:9696;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
```
2022-07-10 15:28:25 +00:00
- Restart containers.
2023-05-05 07:57:27 +00:00
## Jackett Nginx reverse proxy
2022-07-06 06:37:17 +00:00
2022-07-06 08:12:56 +00:00
- Get inside jackett container and go to `/config/Jackett/`
- Add `"BasePathOverride": "/jackett"` in ServerConfig.json file.
- Add below proxy
```
location /jackett/ {
proxy_pass http://jackett:9117;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
}
```
- Restart containers
2023-05-05 07:57:27 +00:00
## Transmission Nginx reverse proxy
2022-07-06 08:12:56 +00:00
- Add below proxy in Nginx config
```
location ^~ /transmission {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_pass_header X-Transmission-Session-Id;
add_header Front-End-Https on;
location /transmission/rpc {
proxy_pass http://transmission:9091;
}
location /transmission/web/ {
proxy_pass http://transmission:9091;
}
location /transmission/upload {
proxy_pass http://transmission:9091;
}
location /transmission {
return 301 https://$host/transmission/web;
}
}
```
2022-08-12 09:45:01 +00:00
**Note: If VPN is enabled, then transmission is reachable on vpn's service name**
2023-05-05 07:57:27 +00:00
## qBittorrent Nginx proxy
2022-08-09 11:36:55 +00:00
```
location /qbt/ {
proxy_pass http://qbittorrent:5080/;
proxy_http_version 1.1;
proxy_set_header Host http://qbittorrent:5080;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_cookie_path / "/; Secure";
}
```
2022-08-12 09:45:01 +00:00
**Note: If VPN is enabled, then qbittorrent is reachable on vpn's service name**
2023-05-05 07:57:27 +00:00
## Jellyfin Nginx proxy
2022-07-06 08:12:56 +00:00
- Add base URL, Admin Dashboard -> Networking -> Base URL (/jellyfin)
- Add below config in Ngix config
```
location /jellyfin {
return 302 $scheme://$host/jellyfin/;
}
location /jellyfin/ {
proxy_pass http://jellyfin:8096/jellyfin/;
proxy_pass_request_headers on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
# Disable buffering when the nginx proxy gets very resource heavy upon streaming
proxy_buffering off;
}
```
2023-05-05 07:57:27 +00:00
2022-08-12 13:17:35 +00:00
- Restart containers