21 lines
828 B
PHP
21 lines
828 B
PHP
|
<?php
|
||
|
namespace Garradin;
|
||
|
|
||
|
// Some random key of more than 30 characters
|
||
|
// openssl rand -base64 40
|
||
|
const SECRET_KEY = '{{ docker_paheko_secret_key }}';
|
||
|
|
||
|
// SMTP parameters
|
||
|
const SMTP_HOST = '{{ docker_paheko_smtp_server }}';
|
||
|
const SMTP_PORT = 25;
|
||
|
const SMTP_SECURITY = 'NONE';
|
||
|
|
||
|
// Upgrades should be handled by new docker image version
|
||
|
const ENABLE_UPGRADES = false;
|
||
|
|
||
|
// Storage quota
|
||
|
const FILE_STORAGE_QUOTA = {{ docker_paheko_quota_gb }}*1024*1024*1024;
|
||
|
|
||
|
// Command line to use chromium to generate PDF documents
|
||
|
const PDF_COMMAND = 'chromium --no-sandbox --headless --disable-dev-shm-usage --autoplay-policy=no-user-gesture-required --no-first-run --disable-gpu --disable-features=DefaultPassthroughCommandDecoder --use-fake-ui-for-media-stream --use-fake-device-for-media-stream --disable-sync --print-to-pdf=%2$s %1$s';
|