Ghost : Login page

Whenever I try to connect to Ghost using this URL https://www.en-voyages.fr/ghost/, I always get the sign-in page instead of the login page. I can’t figure out what the problem is. My site has existed for four years, and I’ve never had this problem before.

Here is my Docker Compose file. I have the latest version of the site.

version: ‘3.8’

services:
ghost:
image: ghost:latest
container_name: ghost
restart: unless-stopped
hostname: ghost
volumes:
- /mnt/user/ConfigDocker/Ghost/Site:/var/lib/ghost/content
environment:
TZ: “Europe/Paris”
PUID: 1000
GUID: 1000
UMASK_SET: 111
database__client: mysql
database__connection__host: mysql
database__connection__user: ghost
database__connection__password: XXXX
database__connection__database: XXXX
url: https://www.en-voyages.fr

dns:
    - 192.168.1.144
    - 80.67.169.12
    - 80.67.169.40
networks:
    - domicile
labels:
    - traefik.enable=true
    - traefik.http.routers.ghost.rule=Host(`www.en-voyages.fr`)
    - traefik.http.routers.ghost.entrypoints=https
    - traefik.http.routers.ghost.tls=true
    - traefik.http.routers.ghost.tls.certresolver=voyages_certs
    # Watchovwer pas de mise à jour automatique
    - "com.centurylinklabs.watchtower.monitor-only=true"

networks:
domicile:
external: true

I think it is the admin page for you (admin) and sign-in page for the rest of the world.

Try/ghost

Yes, but I can’t get to the admin page, although I’ve had no problems until now.