Getting 404 After Restarting Server

After restarting my server, all of my services started back up successfully except for one, a nextcloud instance. I can access nextcloud without issue if I turn off Traefik, and looking at the logs nothing is getting matched on requests to the files subdomain.
The traefik labels I've got on the container are below, is there some reason why requests aren't getting directed to the subdomain?

  - "traefik.enable=true"
      - "traefik.docker.network=t2_proxy"
      # TCP Routers
      - "traefik.tcp.routers.nextcloud-tcp.entrypoints=https"
      - "traefik.tcp.routers.nextcloud-tcp.rule=HostSNI(`files.$DOMAINNAME`)"
      - "treafik.tcp.routers.nextcloud-tcp.tls=true"
      - "traefik.tcp.routers.nextcloud-tcp.tls.passthrough=true"
      # TCP Services
      - "traefik.tcp.routers.nextcloud-tcp.service=nextcloud-tcp-svc"
      - "traefik.tcp.services.nextcloud-tcp-svc.loadbalancer.server.port=443"