Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plausible log in weekly/monthly email reports points to a HTTP 404 link #132

Closed
wreidlinger opened this issue Jun 1, 2024 · 3 comments
Closed

Comments

@wreidlinger
Copy link

Hi there, I'm using the weekly/monthly email report feature and just noticed, that the Pausible logo in the email is not displayed.

image

This is the link to the Plausible logo inside the HTML email:

https://plausible.io/images/icon/plausible_logo-973ea42fac38d21a0a8cda9cfb9231c9.png?vsn=d

The links gives me this:
image

Can I change the link for the Plausible logo somewhere of is this an issue which could be addressed by an update?

Many thanks!

@wreidlinger wreidlinger changed the title Plausible log in weekly/monthly email reports pints to a 404 Link Plausible log in weekly/monthly email reports points to a HTTP 404 link Jun 1, 2024
@ruslandoga
Copy link
Contributor

ruslandoga commented Jun 2, 2024

👋 @wreidlinger

What Plausible version are you using? I think it should be fixed in v2.1.0 (image=ghcr.io/plausible/community-edition:v2.1.0)

@wreidlinger
Copy link
Author

wreidlinger commented Jun 2, 2024

@ruslandoga thanks for your fast respond and sorry that I did not mention this info in my first post.
This is my docker-compose.yml, looks like I'm running v2.0.0 with my config.

name: plausible
services:
# **************************************
# MAILSERVICE
# **************************************
  mail:
    image: sverzegnassi/smtp
    container_name: plausible_mail
    hostname: smtpmail
    #image: bytemark/smtp
    restart: always
    env_file:
      - plausible-conf.env

# **************************************
# DATABASE
# **************************************
  plausible_db:
    image: postgres:14-alpine
    container_name: plausible_db
    hostname: postgres
    restart: always
    volumes:
      - ./data/db-plausible:/var/lib/postgresql/data
    environment:
      - POSTGRES_PASSWORD=postgres

# **************************************
# EVENTS DATABASE
# **************************************
  plausible_events_db:
    image: clickhouse/clickhouse-server:23.3.7.5-alpine
    container_name: plausible_events_db
    hostname: clickhouse
    restart: always
    volumes:
      - ./data/db-clickhouse:/var/lib/clickhouse
      - ./clickhouse/clickhouse-config.xml:/etc/clickhouse-server/config.d/logging.xml:ro
      - ./clickhouse/clickhouse-user-config.xml:/etc/clickhouse-server/users.d/logging.xml:ro
    ulimits:
      nofile:
        soft: 262144
        hard: 262144

# **************************************
# PLAUSIBLE SERVICE
# **************************************
  plausible:
    image: plausible/analytics:latest
    container_name: plausible_plausible
    hostname: plausible
    restart: always
    command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db
      migrate && /entrypoint.sh run"
    depends_on:
      - plausible_db
      - plausible_events_db
      - mail
    ports:
      - 127.0.0.1:8000:8000
    env_file:
      - plausible-conf.env
  • plausible-conf.env
BASE_URL=https://plausible.mydomain.org
SECRET_KEY_BASE=HhmDhY1v****
TOTP_VAULT_KEY=***
DISABLE_REGISTRATION=true
DATABASE_URL=postgres:https://postgres:postgres@plausible_db:5432/plausible_db
CLICKHOUSE_DATABASE_URL=http:https://plausible_events_db:8123/plausible_events_db
# MAXMIND
MAXMIND_LICENSE_KEY=xVCXh4_***
MAXMIND_EDITION=GeoLite2-City
# MAIL
[email protected]
[email protected]
SMTP_HOST_ADDR=mail.mydomain.org
SMTP_HOST_PORT=465
[email protected]
SMTP_USER_PWD=*****
SMTP_HOST_SSL_ENABLED=true
SMTP_RETRIES=2

Can you tell me if I can safely switch from image: plausible/analytics:latest to image: ghcr.io/plausible/community-edition:latest without breaking something? Looks like that I was building my stack with the wrong image...
Many thanks!

@ruslandoga
Copy link
Contributor

Please see plausible/analytics#4125 for the upgrade guide.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants