20 lines
553 B
Bash
20 lines
553 B
Bash
APP_ENV=prod
|
|
APP_KEY={{ wipe_app_key }}
|
|
APP_DEBUG=false
|
|
APP_URL=https://wipe.kadet.net
|
|
APP_DATABASE=mysql://{{ wipe_database.user }}:{{ wipe_database.password }}@{{ database_mysql_host }}/{{ wipe_database.name }}
|
|
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=array
|
|
SESSION_DRIVER=file
|
|
QUEUE_DRIVER=sync
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST={{ wipe_mail.host }}
|
|
MAIL_PORT={{ wipe_mail.port|default(587) }}
|
|
MAIL_USERNAME={{ wipe_mail.user }}
|
|
MAIL_PASSWORD={{ wipe_mail.password }}
|
|
MAIL_ENCRYPTION={{ wipe_mail.encryption|default("tls") }}
|
|
|
|
STEAM_API_KEY={{ wipe_steam_key }}
|