返回应用列表
Plausible v2.1.4

Deploy Plausible v2.1.4 on Your Own Server

Plausible is a lightweight and open-source website analytics tool.

📊 Analytics

想更快部署 Plausible v2.1.4到服务器?试试 Senate,一条命令完成部署,自动配置 HTTPS 和监控。

立即开始

什么是 Plausible v2.1.4?

Plausible is a lightweight and open-source website analytics tool. It doesn't use cookies and is fully compliant with GDPR, CCPA and PECR. Made and hosted in the EU. This one click app uses the: - official image from https://github.com/plausible/analytics/pkgs/container/community-edition - official PostgreSQL image based on Alpine Linux and - ClickHouse image https://hub.docker.com/r/clickhouse/clickhouse-server. This version includes an open source geoip database (db-ip). If you would like to use Maxmind db, You will need to mount a volume and an additional container to update the database. You can use this docker compose file for reference: https://github.com/plausible/hosting/blob/master/geoip/docker-compose.geoip.yml This uses Plausible's inbuilt smtp Bamboo.Mua for sending emails instead of an extra SMTP container.

自托管 Plausible v2.1.4

按照以下步骤在您的服务器上部署。

1

安装 Docker

如果服务器上已安装 Docker,可跳过此步骤。

curl -fsSL https://get.docker.com | sh
2

配置

自定义以下设置。大多数情况下使用默认值即可。

General
3

部署

复制配置并在服务器上运行。

services:
  plausible:
    environment:
      BASE_URL: http://plausible.your-domain.com
      CLICKHOUSE_DATABASE_URL: http://plausible-clickhouse:8123/plausible
      DATABASE_URL: postgres://plausible:plausible@plausible-postgres:5432/plausible
      DISABLE_REGISTRATION: "true"
      MAILER_ADAPTER: Bamboo.Mua
      MAILER_EMAIL: ""
      SECRET_KEY_BASE: 6aa45ea5ac37c9b8375c92987ffbfc354298ceaff125c7004b6efdea21d91a96
      SMTP_HOST_ADDR: smtp.mailgun.org
      SMTP_HOST_PORT: "587"
      SMTP_USER_NAME: ""
      SMTP_USER_PWD: ""
      TOTP_VAULT_KEY: ""
    depends_on:
      - plausible-postgres
      - plausible-clickhouse
  plausible-clickhouse:
    image: clickhouse/clickhouse-server:24.3.3.102-alpine
    volumes:
      - plausible-clickhouse-data:/var/lib/clickhouse
  plausible-postgres:
    image: postgres:16-alpine
    environment:
      POSTGRES_PASSWORD: plausible
      POSTGRES_USER: plausible
    volumes:
      - plausible-postgres-data:/var/lib/postgresql/data
volumes:
  plausible-clickhouse-data: {}
  plausible-postgres-data: {}

然后运行:

docker compose up -d
4

访问

启动后,访问您的应用: http://localhost:8000

为什么要自托管 Plausible v2.1.4?

完全数据所有权

数据保存在您的服务器上,无第三方访问。

无月费

只需支付服务器费用,无按席位或用量收费。

完全控制

按您的需求自定义、备份和扩展。

隐私与合规

满足 GDPR、HIPAA 或内部安全要求。

技术细节

想更快部署?

尝试 Senate!Senate 帮您处理 Docker、HTTPS、更新和监控。一条命令部署 300+ 应用。

在任意 Linux 服务器上安装:

sh -c "$(curl -sSL https://get.senate.sh)"