plausible: update and add variables (#45)

This commit is contained in:
wizzdom 2024-07-26 21:10:14 +01:00 committed by GitHub
parent 3995bc5659
commit 48a729ef40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,7 @@ job "plausible" {
driver = "docker" driver = "docker"
config { config {
image = "plausible/analytics:latest" image = "ghcr.io/plausible/community-edition:v2.1.1"
ports = ["http"] ports = ["http"]
command = "/bin/sh" command = "/bin/sh"
@ -46,15 +46,37 @@ job "plausible" {
data = <<EOH data = <<EOH
BASE_URL=https://plausible.redbrick.dcu.ie BASE_URL=https://plausible.redbrick.dcu.ie
SECRET_KEY_BASE={{ key "plausible/secret" }} SECRET_KEY_BASE={{ key "plausible/secret" }}
TOTP_VAULT_KEY={{ key "plausible/totp/key" }}
# Maxmind/GeoIP settings (for regions/cities)
MAXMIND_LICENSE_KEY={{ key "plausible/maxmind/license" }}
MAXMIND_EDITION=GeoLite2-City
# Google search console integration
GOOGLE_CLIENT_ID={{ key "plausible/google/client_id" }}
GOOGLE_CLIENT_SECRET={{ key "plausible/google/client_secret" }}
# Database settings
DATABASE_URL=postgres://{{ key "plausible/db/user" }}:{{ key "plausible/db/password" }}@postgres.service.consul:5432/{{ key "plausible/db/name" }} DATABASE_URL=postgres://{{ key "plausible/db/user" }}:{{ key "plausible/db/password" }}@postgres.service.consul:5432/{{ key "plausible/db/name" }}
CLICKHOUSE_DATABASE_URL=http://{{ env "NOMAD_ADDR_db" }}/plausible_events_db CLICKHOUSE_DATABASE_URL=http://{{ env "NOMAD_ADDR_db" }}/plausible_events_db
# Email settings
MAILER_NAME="Redbrick Plausible"
MAILER_EMAIL={{ key "plausible/smtp/from" }}
MAILER_ADAPTER=Bamboo.SMTPAdapter
SMTP_HOST_ADDR={{ key "plausible/smtp/host" }}
SMTP_HOST_PORT={{ key "plausible/smtp/port" }}
SMTP_USER_NAME={{ key "plausible/smtp/user" }}
SMTP_USER_PWD={{ key "plausible/smtp/password" }}
DISABLE_REGISTRATION=invite_only
EOH EOH
destination = "local/file.env" destination = "local/file.env"
env = true env = true
} }
resources { resources {
memory = 500 memory = 1000
} }
} }
@ -72,7 +94,7 @@ EOH
driver = "docker" driver = "docker"
config { config {
image = "clickhouse/clickhouse-server:23.3.7.5-alpine" image = "clickhouse/clickhouse-server:24.3.3.102-alpine"
ports = ["db"] ports = ["db"]
volumes = [ volumes = [
"/opt/plausible/clickhouse:/var/lib/clickhouse", "/opt/plausible/clickhouse:/var/lib/clickhouse",