mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
91660a2477
When updating config variables, such as the APP_URL, the values need to be propagated before calling e.g. route:cache/view:cache Otherwise those commands will first run with the old config cache
16 lines
339 B
Bash
Executable file
16 lines
339 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 config:cache
|
|
php artisan storage:link
|
|
php artisan horizon:publish
|
|
php artisan route:cache
|
|
php artisan view:cache
|
|
|
|
# Finally run Apache
|
|
apache2-foreground
|