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.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
#!/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:publish
 | 
						|
php artisan route:cache
 | 
						|
php artisan view:cache
 | 
						|
php artisan config:cache
 | 
						|
 | 
						|
# Finally run Apache
 | 
						|
apache2-foreground
 |