fix: support 1.3.0-rc10
This commit is contained in:
parent
38ec62c05c
commit
637937d5f6
7 changed files with 83 additions and 30 deletions
24
config.local.php
Normal file
24
config.local.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
namespace Paheko;
|
||||
|
||||
// Some random key of more than 31 characters
|
||||
// openssl rand -base64 41
|
||||
const SECRET_KEY = 'pCfzcII7HvAvGw2Q/bZpBaRxKf79vxr0TdFTyrbld9PahenxIrL6Pg==';
|
||||
|
||||
// SMTP parameters
|
||||
const SMTP_HOST = 'mailcow.lefuturiste.fr';
|
||||
const SMTP_PORT = 465;
|
||||
const SMTP_SECURITY = 'TLS';
|
||||
const SMTP_USER = 'ne-pas-repondre@etoiledebethleem.fr';
|
||||
const SMTP_PASSWORD = 'ho1x8F6TLDAmQNhS8mlN';
|
||||
|
||||
// Upgrades should be handled by new docker image version
|
||||
const ENABLE_UPGRADES = false;
|
||||
|
||||
// Storage quota
|
||||
const FILE_STORAGE_QUOTA = 1*1024*1024*1024; // 1 Go
|
||||
|
||||
// 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';
|
||||
|
||||
const MAIL_SENDER = 'ne-pas-repondre@etoiledebethleem.fr';
|
||||
Loading…
Add table
Add a link
Reference in a new issue