| APP_ENV |
Defines the application environment |
development / testing / production |
| APP_SYSTEM |
Defines the application "operating" system |
linux / win |
| APP_DEBUG |
Defines the whether the application is in debug mode |
true / false |
| APP_KEY |
Defines the application key used to hash/encrypt stuff. Must be generated executing php artisan key:generate |
|
| APP_NAME |
Defines de application name |
|
| APP_BACKEND_URL |
Defines the application backend base url. It is used to generate urls to backend endpoints |
|
| APP_FRONTEND_URL |
Defines the application frontend base url. It is used to generate urls to frontend endpoints |
|
| APP_EXTERNAL_FORMS_BACKEND_URL |
Defines the application external backend base url. It is used to generate urls to backend external forms endpoints |
|
| APP_EXTERNAL_FORMS_FRONTEND_URL |
Defines the application external frontend base url. It is used to generate urls to frontend external forms endpoints |
|
| APP_TIMEZONE |
Defines the application timezone |
See here |
| APP_LOCALE |
Defines the application default locale. It will be overridden by the locale defined in frontend |
pt / en / ... |
| APP_FALLBACK_LOCALE |
Defines the application default fallback locale. If a translation is not found in the main language, the application will use this as a fallback |
pt / en / ... |
| APP_BACKEND_LOCALE |
Defines the application backend locale. It will be used when translating notifications / messages text for example |
pt / en / ... |
| APP_AUTH_PROVIDER |
Defines the application authentication provider |
eloquent / adldap |
| APP_NOTIFY_INTERNAL_COMMUNICATIONS_BY_MAIL |
Defines whether the application must notify internal communications by email |
true / false |
| DB_CONNECTION |
Defines the database default connection name |
mysql / sqlsrv / pgsql / sqlite |
| DB_HOST |
Defines the database host |
|
| DB_PORT |
Defines the database port |
|
| DB_DATABASE |
Defines the database name |
|
| DB_USERNAME |
Defines the database username |
|
| DB_PASSWORD |
Defines the database password |
|
| BROADCAST_DRIVER |
Defines the default brodcast driver used by the framework when an event needs to be broadcast |
redis / pusher / log |
| CACHE_DRIVER |
Defines the default cache connection that gets used while using the caching library |
redis / memcached / file / database / array / apc |
| FILESYSTEM_DISK |
Defines the default file disk |
local |
| QUEUE_CONNECTION |
Defines the default queue driver |
redis / sqs / beanstalkd / database / sync / null |
| SESSION_DRIVER |
Defines the default session driver that will be used on requests |
redis / memcached / file / database / cookie / array / apc |
| SESSION_LIFETIME |
Defines the number of minutes that the session will be allowed to remain idle before it expires |
|
| REDIS_HOST |
Defines the redis database host |
|
| REDIS_PASSWORD |
Defines the redis database password |
|
| REDIS_PORT |
Defines the redis database port |
Sometimes for SQL Server you must leave this blank |
| REDIS_DB |
Defines the redis database number (index) |
0 - 15 |
| REDIS_CACHE_DB |
Defines the redis database cache number (index) |
1 - 16 |
| MAIL_MAILER |
Defines the default mail driver |
smtp / sendmail / mailgun / mandrill / ses / sparkpost / log / array |
| MAIL_HOST |
Defines the host address of the SMTP server used by de application |
|
| MAIL_PORT |
Defines the SMTP port used by de application |
|
| MAIL_FROM_ADDRESS |
Defines the default email address for all emails sent by the application |
|
| MAIL_FROM_NAME |
Defines the default name for all emails sent by the application |
|
| MAIL_USERNAME |
Defines the SMTP authentication username, if applicable |
|
| MAIL_PASSWORD |
Defines the SMTP authentication password, if applicable |
|
| MAIL_ENCRYPTION |
Defines the SMTP authentication username, if applicable |
tls / ssl |
| SENTRY_PRIVATE_DSN |
Defines the sentry private data source name |
|
| SENTRY_PUBLIC_DSN |
Defines the sentry public data source name |
|
| LDAP_ACCOUNT_SUFFIX |
Defines a suffix that will be appended to adldap authenticating users usernames |
|
| LDAP_CONTROLLERS |
Defines the array of servers located on the network that serve Active Directory. Must be separated with a space |
|
| LDAP_BASEDN |
Defines the base distinguished name where the adldap queries will be performed |
|
| LDAP_ADMIN_ACCOUNT_SUFFIX |
Defines a suffix that will be appended to the "administrator" account when connecting to the AD server |
|
| LDAP_ADMIN_USERNAME |
Defines the "administrator" username used to connect to the AD server |
|
| LDAP_ADMIN_PASSWORD |
Defines the "administrator" password used to connect to the AD server |
|
| LDAP_LOGIN_FALLBACK |
Defines if it is allowed to login as a user located on the local database if active directory authentication fails |
true / false |
| LDAP_PASSWORD_SYNC |
Defines if the users AD passwords shall be synced with the local database |
true / false |
| PDF_REPORT_FOOTER |
Defines the PDF reports' default footer |
wemake / wesecure |
| LICENSES_NUMBER |
Defines the application licenses number, or, by another words, the number of active users at the same time. When this number is reached, no more users can be created / activated |
|
| JWT_TTL |
Defines the length of time (in minutes) that the json web token will be valid for |
|
| FILESYSTEM_DISKS_LOCAL_ROOT_PATH |
Defines the root path for file storage, should point towards external storage path if that exists |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_BACKUP_FILES_ROOT_PATH |
Defines the path for backup-files storage, should point towards external's path if that exists |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_CLIENT_FILES_ROOT_PATH |
Defines the path for files storage, should point towards external's path if that exists |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_TEMP_FILES_ROOT_PATH |
Defines the path for temp-files storage, should point towards external's path if that exists |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_TEMPLATES_ROOT_PATH |
Defines the path for templates storage, should point towards internal backend storage path |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_CLIENT_BACKUPS_ROOT_PATH |
Defines the path for backups storage, should point towards external's path if that exists |
comment if no external storage directory / string file path |
| FILESYSTEM_DISKS_PUBLIC_ROOT_PATH |
Defines the path for public storage, should point towards external's path if that exists |
comment if no external storage directory / string file path |
| ACTIVITY_LOGGER_ENABLED |
Defines whether the activity logs are being recorded or not |
true / false |
| ACTIVITY_LOGGER_DELETE_RECORDS_OLDER_THAN_DAYS |
Defines the length of time that logs are kept for |
|
| NOCAPTCHA_SUPPORTED |
Defines whether ReCaptcha is enabled or not |
true / false |
| NOCAPTCHA_SITEKEY |
Defines the ReCaptcha site key |
|
| NOCAPTCHA_SECRET |
Defines the ReCaptcha secret |
|