kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			16 wiersze
		
	
	
		
			325 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			16 wiersze
		
	
	
		
			325 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:publish
 | |
| php artisan route:cache
 | |
| php artisan view:cache
 | |
| php artisan config:cache
 | |
| 
 | |
| # Finally run FPM
 | |
| php-fpm
 |