mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
eaa28e4be1
Fixes #2121
15 lines
328 B
Bash
Executable file
15 lines
328 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Create the storage tree if needed and fix permissions
|
|
cp -r storage.skel/* storage/
|
|
chown -R www-data:www-data storage/ bootstrap/
|
|
|
|
# Refresh the environment
|
|
php artisan storage:link
|
|
php artisan horizon:assets
|
|
php artisan route:cache
|
|
php artisan view:cache
|
|
php artisan config:cache
|
|
|
|
# Finally run FPM
|
|
exec php-fpm |