Enable redis queuing by default and link horizon properly

pull/281/head
Pierre Jaury 7 years ago
parent 4998830fa1
commit d327aeba2b

@ -4,7 +4,7 @@ APP_KEY="${APP_KEY}"
APP_DEBUG=false
APP_URL=${APP_URL}
LOG_CHANNEL=stack
LOG_CHANNEL=stderr
DB_CONNECTION=mysql
DB_HOST=${DB_HOST}
@ -17,7 +17,8 @@ BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync
QUEUE_DRIVER=redis
HORIZON_PREFIX=horizon-pixelfed
REDIS_HOST="${REDIS_HOST}"
REDIS_PASSWORD=null

@ -1,5 +1,9 @@
#!/bin/bash
set -o allexport
source .env
set +o allexport
cp -r storage.skel/* storage/
chown -R www-data:www-data storage/
php artisan migrate --force

Loading…
Cancel
Save