26 lines
723 B
Bash
26 lines
723 B
Bash
APP_ENV=prod
|
|
APP_KEY={{ wipe_app_key }}
|
|
APP_DEBUG=false
|
|
APP_URL=https://wipozaekranem.pl
|
|
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_FROM="{{ wipe_mail.from }}"
|
|
MAIL_USERNAME={{ wipe_mail.user }}
|
|
MAIL_PASSWORD={{ wipe_mail.password }}
|
|
MAIL_ENCRYPTION={{ wipe_mail.encryption|default("tls") }}
|
|
|
|
STEAM_API_KEY={{ wipe_steam_key }}
|
|
|
|
{% if wipe_sentry is defined %}
|
|
SENTRY_LARAVEL_DSN={{ wipe_sentry.dsn }}
|
|
SENTRY_TRACES_SAMPLE_RATE={{ wipe_sentry.rate }}
|
|
{% endif %}
|