mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
Bash
18 lines
379 B
Bash
7 years ago
|
#!/bin/bash
|
||
7 years ago
|
|
||
7 years ago
|
# Create the storage tree if needed and fix permissions
|
||
7 years ago
|
cp -r storage.skel/* storage/
|
||
7 years ago
|
chown -R www-data:www-data storage/
|
||
|
php artisan storage:link
|
||
7 years ago
|
|
||
7 years ago
|
# Migrate database if the app was upgraded
|
||
|
php artisan migrate --force
|
||
|
|
||
|
# Run a worker if it is set as embedded
|
||
|
if [ HORIZON_EMBED = true ]; then
|
||
|
php artisan horizon &
|
||
|
fi
|
||
|
|
||
|
# Finally run Apache
|
||
7 years ago
|
exec apache2-foreground
|