-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
94 lines (83 loc) · 3.42 KB
/
.env.example
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
APP_NAME="APA / LPA"
APP_ENV=local # Available values are (local, production).
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost:8000 # Set to Application URL.
AUTH_PROVIDER_DRIVER=adldap # Set to eloquent or adldap.
LOG_CHANNEL=stack # Set to stack_production on a production environment.
LOG_SLACK_WEBHOOK_URL= # Set to webhook url for slack channel notifications.
# For automated backups to work, make sure a cron job is configured on the server.
# See https://laravel.com/docs/5.6/scheduling for more details.
BACKUP_ACTIVE=false # Set to true to activate daily backups of both filesystem and databases.
BACKUP_NAME= # Set to name of the backup (usually server name).
BACKUP_TIME_OF_DAY= # Set to time of the day when the backup should be executed (i.e. 1:00)
DB_CONNECTION=mysql
DB_HOST= # Set to DB server FQDN.
DB_PORT=3306
DB_DATABASE= # Set to LPA Schema Name.
DB_USERNAME= # Set to LPA Database User Name.
DB_PASSWORD= # Set to LPA Database User Password.
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=480
QUEUE_DRIVER=sync
# Not used
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
# Mail Configurations
MAIL_DRIVER=smtp
MAIL_HOST=localhost
MAIL_PORT=25
MAIL_FROM_NAME="${APP_NAME}"
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
# On production environment, set to application development team mailbox.
# On QA environment, set to QA mailbox.
# On a local Dev environment, set to your own email.
MAIL_BOX_DEV=
# Set to LPA administration mailbox on the business side (i.e. curriculum mailbox).
MAIL_BOX_BUSINESS=
SEND_PROCESS_NOTIFICATIONS=false # Set to true if you want to receive email notifications from process.
# Not used
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
# LDAP Configurations
LDAP_ACCOUNT_PREFIX=
LDAP_ACCOUNT_SUFFIX=
LDAP_HOSTS= # Set to LDAP server FQDN.
LDAP_PORT=389
LDAP_TIMEOUT=5
LDAP_BASE_DN= # Set to LDAP Distiguished Name.
LDAP_USERNAME=
LDAP_PASSWORD=
LDAP_SCHEMA_CLASS=Adldap\Schemas\ActiveDirectory
LDAP_LOCATE_USER_BY=samaccountname
LDAP_BIND_USER_BY=distinguishedname
# Admin Account Credentials
ADMIN_USERNAME= # Set to LPA Administrator User Name
ADMIN_PASSWORD= # Set to LPA Administrator Password.
# Admin Users
ADMIN_USERS= # Set to a comma seperated list of usernames.
# Camunda Server Configurations
CAMUNDA_HOST= # Set to Camunda Engine FQDN.
CAMUNDA_PORT=8080
CAMUNDA_REST_URL=engine-rest
# Camunda Database Configurations
CAMUNDA_DB_HOST= # Set to Camunda DB FQDN.
CAMUNDA_DB_PORT=3306
CAMUNDA_DB_DATABASE= # Set to Camunda Database Schema Name.
CAMUNDA_DB_USERNAME= # Set to Camunda Database User Name.
CAMUNDA_DB_PASSWORD= # Set to Camunda Database User Password.
# Camunda Application Configurations
CAMUNDA_APP_URL= # Set to LPA Process Engine route.
CAMUNDA_USERNAME= # Set to Camunda Administrator Username.
CAMUNDA_PASSWORD= # Set to Camunda Administrator Password.
CAMUNDA_PASSWORD_SALT= # Set to Camunda Administrator Salt.