From b4199ce26aac5cc0f32709b84aecd16afeff4f38 Mon Sep 17 00:00:00 2001 From: chaim Date: Sat, 4 Apr 2026 12:51:48 +0000 Subject: [PATCH] Add config.json for Coolify deployment --- config.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..f0345ba --- /dev/null +++ b/config.json @@ -0,0 +1,45 @@ +{ + "$meta": { + "version": 1, + "source": "coolify" + }, + "database": { + "mode": "external", + "backup": { + "enabled": true, + "intervalMinutes": 60, + "retentionDays": 30, + "dir": "/data/backups" + } + }, + "logging": { + "mode": "file", + "logDir": "/data/logs" + }, + "server": { + "deploymentMode": "authenticated", + "exposure": "public", + "host": "0.0.0.0", + "port": 3100, + "allowedHostnames": ["pc.nautilus.marcusgroup.org"], + "serveUi": true + }, + "auth": { + "baseUrlMode": "explicit", + "publicBaseUrl": "https://pc.nautilus.marcusgroup.org", + "disableSignUp": false + }, + "storage": { + "provider": "local_disk", + "localDisk": { + "baseDir": "/data/storage" + } + }, + "secrets": { + "provider": "local_encrypted", + "strictMode": false, + "localEncrypted": { + "keyFilePath": "/data/secrets/master.key" + } + } +}