1
0
Fork 0

Enable redis queuing by default and link horizon properly

This commit is contained in:
Pierre Jaury 2018-06-16 23:51:33 +02:00
parent 4998830fa1
commit d327aeba2b
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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