From 3f7c01853ce11bba284e2bc282937e4eee62a7e4 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 30 Jun 2024 05:19:34 +0500 Subject: [PATCH] docs: rename the labels --- docs/extending-jellyseerr/reverse-proxy.mdx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/extending-jellyseerr/reverse-proxy.mdx b/docs/extending-jellyseerr/reverse-proxy.mdx index bdb84a7d6..82bd8a208 100644 --- a/docs/extending-jellyseerr/reverse-proxy.mdx +++ b/docs/extending-jellyseerr/reverse-proxy.mdx @@ -63,9 +63,9 @@ sudo ln -s /etc/nginx/sites-available/jellyseerr.example.com.conf /etc/nginx/sit :::warning -This Nginx subfolder reverse proxy is an unsupported workaround, and only provided as an example. The filters may stop working when Overseerr is updated. +This Nginx subfolder reverse proxy is an unsupported workaround, and only provided as an example. The filters may stop working when Jellyseerr is updated. -If you encounter any issues with Overseerr while using this workaround, we may ask you to try to reproduce the problem without the Nginx proxy. +If you encounter any issues with Jellyseerr while using this workaround, we may ask you to try to reproduce the problem without the Nginx proxy. ::: Add the following location block to your existing `nginx.conf` file. @@ -146,9 +146,9 @@ Add a new proxy host with the following settings: ### Details -- **Domain Names:** Your desired external Overseerr hostname; e.g., `overseerr.example.com` +- **Domain Names:** Your desired external Jellyseerr hostname; e.g., `jellyseerr.example.com` - **Scheme:** `http` -- **Forward Hostname / IP:** Internal Overseerr hostname or IP +- **Forward Hostname / IP:** Internal Jellyseerr hostname or IP - **Forward Port:** `5055` - **Cache Assets:** yes - **Block Common Exploits:** yes @@ -190,18 +190,18 @@ Caddy will automatically obtain and renew SSL certificates for your domain. ## Traefik (v2) -Add the following labels to the Overseerr service in your `docker-compose.yml` file: +Add the following labels to the Jellyseerr service in your `docker-compose.yml` file: ```yaml labels: - 'traefik.enable=true' ## HTTP Routers - - 'traefik.http.routers.overseerr-rtr.entrypoints=https' - - 'traefik.http.routers.overseerr-rtr.rule=Host(`overseerr.domain.com`)' - - 'traefik.http.routers.overseerr-rtr.tls=true' + - 'traefik.http.routers.jellyseerr-rtr.entrypoints=https' + - 'traefik.http.routers.jellyseerr-rtr.rule=Host(`jellyseerr.domain.com`)' + - 'traefik.http.routers.jellyseerr-rtr.tls=true' ## HTTP Services - - 'traefik.http.routers.overseerr-rtr.service=overseerr-svc' - - 'traefik.http.services.overseerr-svc.loadbalancer.server.port=5055' + - 'traefik.http.routers.jellyseerr-rtr.service=jellyseerr-svc' + - 'traefik.http.services.jellyseerr-svc.loadbalancer.server.port=5055' ``` For more information, please refer to the [Traefik documentation](https://doc.traefik.io/traefik/user-guides/docker-compose/basic-example/).