-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig.php.sample
32 lines (27 loc) · 1.04 KB
/
config.php.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
define('ENV', 'ENV_DEVELOPMENT');
// Local configuration
define('DATABASE_HOSTNAME', '127.0.0.1');
define('DATABASE_USERNAME', 'root');
define('DATABASE_PASSWORD', '');
define('DATABASE_DATABASE', '');
define('SMTP_AUTH_PASSWORD', '');
define('SMTP_AUTH_USERNAME', '');
define('SMTP_AUTH', false);
define('SMTP_DEBUG', 0);
define('SMTP_ENCRYPTION', 'none');
define('SMTP_FROM', PROJECT_NAME . '@example.com');
define('SMTP_HOST', 'localhost');
define('SMTP_PORT', 1025); // 1025 - Mailhog, 25 - live
define('SMTP_USE_SENDMAIL', false); // Send mail via system sendmail command or directly via SMTP
define('SMTP_DKIM_ENABLED', false);
define('SMTP_DKIM_DOMAIN', 'example.com');
define('SMTP_DKIM_PRIVATE_KEY', '.certs/dkim_private_key.pem');
define('SMTP_DKIM_SELECTOR', 'example');
define('SMTP_DKIM_PASSPHRASE', '');
define('SMTP_DKIM_IDENTITY', SMTP_FROM);
// Make sure timestamps are correct
date_default_timezone_set('Europe/Tallinn');
// In which language you have translatable phrases in the code
define('DEFAULT_LANGUAGE', 'en');
const SENTRY_DSN = '';