diff --git a/config.template.yaml b/config.template.yaml index edcdb80..a6fd293 100644 --- a/config.template.yaml +++ b/config.template.yaml @@ -13,6 +13,10 @@ database: password: "%%POSTGRESQL_PASSWORD%%" database: "%%POSTGRESQL_DATABASE%%" ssl: true + sslMode: "require" + maxOpenConns: 25 + maxIdleConns: 25 + connMaxLifetime: "1h" storage: type: "s3" @@ -39,6 +43,24 @@ email: auth: jwtSecret: "$(openssl rand -hex 32)" tokenExpiry: 86400 + sessionSecret: "$(openssl rand -hex 32)" logging: - level: "info" \ No newline at end of file + level: "info" + format: "text" + +# Additional settings based on Museum requirements +keygen: + master: "$(openssl rand -hex 32)" + +payments: + enabled: false + +metadata: + localPath: "/app/data/storage/metadata" + +tempDirectory: "/app/data/storage/temp" + +memoryCache: + enabled: true + size: 100 \ No newline at end of file