# THIS FILE MUST BE KEPT SECRET! IT IS BLOCKED IN THE HTACCESS FILE
# HOWEVER, THIS DIRECTORY SHOULDN'T BE EXPOSED TO THE PUBLIC AT ALL
# SEE THE DOCS FOR PROPER (SECURE) INSTALLATION:
# https://docs.phpvms.net/installation/uploading
#
# This is the place to edit your configuration. To change a config that's
# not present here, you need to either edit the file/config in the config
# folder, or change it to read the value from the environment. Something like:
#
# 'some_key' = env('ENVIRONMENT_VARIABLE_KEY_ADDED_BELOW', 'default value')
#
# Various other settings in the configs also read from some environment variables
# by default. You can override those here

APP_KEY='base64:wDJqmxjabeYCgcRQHWdWyVHnfe62izwzAdvJ6CQeAx4='
APP_NAME='American Virtual'
SITE_NAME='American Virtual'
APP_URL='https://crew.americanva.net'
APP_LOCALE=en

# When live, this should be "production". If testing locally, you can use "local"
APP_ENV=production
LOG_LEVEL=debug
APP_DEBUG=true
DEBUG_TOOLBAR=

## DATABASE SETTINGS

DB_CONNECTION=mysql
DB_HOST='127.0.0.1'
DB_PORT=3306
DB_DATABASE='tstamer_phpvms7'
DB_USERNAME='tstamer_crew'
DB_PASSWORD='Rental2016$'
DB_PREFIX=''
DB_SOCKET=

## CACHE SETTINGS
# https://docs.phpvms.net/config/optimizing#caching

CACHE_DRIVER=file
CACHE_PREFIX='american_67996a59b7835'

SESSION_DRIVER=database
SESSION_CONNECTION=mysql

## EMAIL SETTINGS

# Look at the available mail configs in config/mail.php
# Also refer to the Laravel docs here: https://laravel.com/docs/8.x/mail
# If you're using SMTP, I recommend setting the QUEUE_DRIVER to 'database'
# https://docs.phpvms.net/config/optimizing#queue-driver


MAIL_FROM_ADDRESS=info@crew.americanva.net
MAIL_FROM_NAME="American Virtual"
MAIL_MAILER='ses'
AWS_ACCESS_KEY_ID='AKIA4ZPZVDA6AWR7ALOO'
AWS_SECRET_ACCESS_KEY='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'
AWS_DEFAULT_REGION='us-east-2'
SES_ENDPOINT='https://email.us-east-2.amazonaws.com'

## QUEUE SETTINGS

# Set this to "database" if you have slow pages due to notifications/emails
# They will then be sent out via cron
QUEUE_DRIVER=database

# If you're using the Laravel Queue Worker, set this to true. This will stop the queue tasks
# from being run during the cron job
# https://laravel.com/docs/8.x/queues#running-the-queue-worker
QUEUE_WORKER=false

# SAIL SETTINGS
# Change the default docker-compose name in sail
SAIL_FILES="docker-compose.dev.yml"