From b95b1d3a068e69a7b3b46d4a2359063cd132cb06 Mon Sep 17 00:00:00 2001 From: Administrator Date: Thu, 28 Aug 2025 18:31:44 +0000 Subject: [PATCH] docs: update applications/ghost --- applications/ghost.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/applications/ghost.md b/applications/ghost.md index e8ea2c2..6b8dc0f 100644 --- a/applications/ghost.md +++ b/applications/ghost.md @@ -2,7 +2,7 @@ title: Untitled Page description: published: true -date: 2025-08-28T18:07:31.592Z +date: 2025-08-28T18:31:42.689Z tags: editor: markdown dateCreated: 2025-08-28T18:07:31.592Z @@ -36,18 +36,18 @@ services: restart: always environment: database__client: mysql - database__connection__host: ghost_db + database__connection__host: ${SERVICE}_db database__connection__user: ${MYSQL_USER} database__connection__password: ${MYSQL_PASSWORD} database__connection__database: ${MYSQL_DATABASE} + mail__transport: "SMTP" mail__from: ${MAIL_FROM} - mail__transport: SMTP mail__options__host: ${MAIL_HOST} mail__options__port: ${MAIL_PORT} mail__options__secure: ${MAIL_SECURE} - mail__options__auth__user: ${MAIL_USER} + mail__options__auth__user: ${MAIL_SECURE} mail__options__auth__pass: ${MAIL_PASS} - url: https://${DOMAIN} + url: "https://${DOMAIN}/" volumes: - ./content:/var/lib/ghost/content networks: @@ -57,12 +57,12 @@ services: - ghost_db labels: - "traefik.enable=true" - - "traefik.http.routers.${SERVICE}.rule=Host(`${DOMAIN}`)" - - "traefik.http.routers.${SERVICE}.entrypoints=websecure" - - "traefik.http.routers.${SERVICE}.tls=true" - - "traefik.http.routers.${SERVICE}.tls.certresolver=http" - - "traefik.http.routers.${SERVICE}.service=${SERVICE}" - - "traefik.http.services.${SERVICE}.loadbalancer.server.port=2368" + - "traefik.http.routers.ghost.rule=Host(`echo.blasseye.fr`)" + - "traefik.http.routers.ghost.entrypoints=websecure" + - "traefik.http.routers.ghost.tls=true" + - "traefik.http.routers.ghost.tls.certresolver=http" + - "traefik.http.routers.ghost.service=ghost" + - "traefik.http.services.ghost.loadbalancer.server.port=2368" - "traefik.docker.network=traefik_net" ghost_db: @@ -83,7 +83,7 @@ networks: traefik_net: external: true ghost_net: - name: ghost_net + name: ${SERVICE}_net driver: bridge ```