Compare commits

..

3 Commits

Author SHA1 Message Date
admin 05cb216968 papra: add required AUTH_SECRET (app refuses to boot without it)
papra was NOT version-bumped by this campaign -- it crash-looped at its existing
26.6.1-rootless pin, so this is a PRE-EXISTING catalog defect: papra has never
been deployable from this template.

  Invalid configuration: In production, the auth secret must not be the default
  one. Please set a secure auth secret using the AUTH_SECRET environment
  variable.

Added as a generated hex:32 secret and marked data_key: true -- it signs
sessions, so regenerating it on restore would invalidate every login.

Campaign 7 catalog sweep.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE
2026-07-19 00:42:29 +02:00
admin 1c06ef00bd n8n: raise memory 512M -> 1536M (V8 heap OOM proven during validation)
n8n 2.31.3 died on a fresh deploy under the 512M limit:

  FATAL ERROR: Ineffective mark-compacts near heap limit
  Allocation failed - JavaScript heap out of memory

Note the container still reported *healthy* while the Node process was crashing,
so docker health alone did not catch this -- the log scan did.

Campaign 7 catalog sweep.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE
2026-07-19 00:42:29 +02:00
admin 4ce7beea9e outline: set PGSSLMODE=disable (1.x defaults to SSL; the sidecar Postgres has none)
outline 1.9.1 crash-looped (15 restarts in 420s) on a fresh deploy:

  SequelizeConnectionError: The server does not support SSL connections
  Set the PGSSLMODE environment variable to 'disable' or enable SSL on your
  database server.

The stack's own Postgres sidecar is on the app-internal network and does not
serve SSL, so the correct answer is to disable it client-side. Env var proven
wrong by the deploy.

Campaign 7 catalog sweep.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE
2026-07-19 00:42:28 +02:00
5 changed files with 19 additions and 3 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ slug: "n8n"
# --- Resource hints (displayed on deploy screen) ---
resources:
mem_request: "150M"
mem_limit: "512M"
mem_request: "512M"
mem_limit: "1536M"
pi_compatible: false
needs_hdd: false
+1 -1
View File
@@ -25,7 +25,7 @@ services:
deploy:
resources:
limits:
memory: 512M
memory: 1536M
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5678/healthz"]
interval: 30s
+4
View File
@@ -24,6 +24,10 @@ services:
- SECRET_KEY=${SECRET_KEY}
- UTILS_SECRET=${UTILS_SECRET}
- DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline
# Az Outline 1.x alapértelmezésben SSL-t vár a Postgrestől. A stackben futó
# sidecar Postgres nem beszél SSL-t (belső hálózat), ezért enélkül az app
# indulási hurokba kerül: "The server does not support SSL connections".
- PGSSLMODE=disable
- REDIS_URL=redis://outline-redis:6379
- URL=https://${SUBDOMAIN}.${DOMAIN}
- PORT=3000
+11
View File
@@ -30,6 +30,17 @@ deploy_fields:
default: "papra"
required: true
locked_after_deploy: true
- env_var: AUTH_SECRET
label: "Munkamenet-aláíró kulcs"
type: secret
generate: "hex:32"
locked_after_deploy: true
# A Papra éles módban ELUTASÍTJA az indulást, ha ez az alapértelmezett érték
# marad ("the auth secret must not be the default one"), ezért kötelező.
# Ez írja alá a munkameneteket: ha újragenerálódik, minden bejelentkezés
# érvénytelenné válik, ezért visszaállításkor a régi kulcsot kell megtartani.
data_key: true
description: "Az alkalmazás aldomainje"
# --- App info (info page content) ---
+1
View File
@@ -14,6 +14,7 @@ services:
environment:
- TZ=Europe/Budapest
- APP_BASE_URL=https://${SUBDOMAIN}.${DOMAIN}
- AUTH_SECRET=${AUTH_SECRET}
volumes:
- papra_data:/app/data
networks: