Access to plex server suddenly stopped working

Server Version#: plexinc/pms-docker:latest
Player Version#: Any

So first I’ll try to explain my server architecture so It’s clear, I have a dedicated server in OVH which is currently running a Proxmox hypervisor (This has an external IP address), I have a single VM on it running Debian on it.
The Proxmox has iptables pre-routing rules to route ALL the plex ports to that debian VM.
That debian VM contains my Plex container, attached it’s docker-compose at the end of the post.

Now to the actual problem, I don’t have access to my movie library but I do have general access to my server when accessing with the Proxmox external IP and when accessing through the local plex IP through the debian machine web-ui.
When I do so I don’t have access to any movie or to the server settings.
When accessing through plex.tv I get the error message “Can’t connect securely to server” which leads me to believe there was a certificate error.

I tried to follow multiple guides, notable this one:
Why am I locked out of Server Settings and how do I get in?
But nothing allowed me to get access to my server settings, not locally and not remotely.

I’ll attach the logs in hopes that someone can help me pinpoint the problem because I’m lost.
plex.log (196.4 KB)

version: "3"

networks:
  proxy:
    external: true

services:
  plex:
    image: plexinc/pms-docker
    container_name: plex
    restart: unless-stopped
    networks:
      - proxy
    ports:
      - 32400:32400/tcp
      - 8324:8324/tcp
      - 32469:32469/tcp
      - 1900:1900/udp
      - 32410:32410/udp
      - 32412:32412/udp
      - 32413:32413/udp
      - 32414:32414/udp
    environment:
      - "TZ=Europe/London"
      - "PLEX_CLAIM=claim-xxxxxxxxxxxxx"
       # 192.168.1.150 is the internal ip of my debian VM
      - "ADVERTISE_IP=http://192.168.1.150:32400"
      - "HOSTNAME=xxxxx"
    volumes:
      - /srv/plex/config:/config
      - /data:/data
    devices:
      - /dev/dri:/dev/dri

I think my Plex certificate has expired which is what leads to the errors in my logs and in Plex failing to connect securely to my server.
How can you generate a new certificate?

Your hosting provider is Hetzner, which has been blocked from plex. See the other threads about why/people complaining

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.