* Fix memory; was accidentally done in `docker-compose.yml`. * Fix bad path. * Prevent DB from crashing during `fixes.sh`. * Bump the DB up a little more. * Add photos directory. * Log files as they copy. * Increase certbot by a little, was maxing near 15MB after an image update. * Add a HUGE space saver to the cleanup crew. * Add the beginnings of a purge script. Helps try to bring down the DB size. * Enhance output. * Further enhance output. * Fix loading of ENV. * Enhance output. Purge file previews. * Fix extra newline. * Add sourcing of main ENV, use RM instead of MV to reduce steps. * Fix rm command. * Ensure maintenance mode is off when starting. * Add volume rather than duplicating all media. * Ignore media. * Check space before as well.
		
			
				
	
	
		
			37 lines
		
	
	
		
			859 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			859 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Ignore everything in Volumes, it contains large and private data.
 | 
						|
Volumes/*
 | 
						|
 | 
						|
# Ignore backed up config files.
 | 
						|
*.yml.*backup*
 | 
						|
*.yml.*Backup*
 | 
						|
*.yml.*BACKUP*
 | 
						|
*.yml.*bkp*
 | 
						|
 | 
						|
# Ignore logs
 | 
						|
logs
 | 
						|
 | 
						|
# Ignore private reverse proxy configurations.
 | 
						|
Config/ReverseProxy/config/conf.d/*
 | 
						|
Config/ReverseProxy/config/html/*
 | 
						|
Config/ReverseProxy/config/hosts/*
 | 
						|
Config/ReverseProxy/config/load.conf.d/*
 | 
						|
Config/ReverseProxy/config/mail.conf.d/*
 | 
						|
 | 
						|
# Ignore any private key information.
 | 
						|
private.key
 | 
						|
 | 
						|
# Ignore DNS config files, contain private settings.
 | 
						|
Config/DNS/config/*
 | 
						|
 | 
						|
# Ignore anything in disabled folders.
 | 
						|
disabled
 | 
						|
 | 
						|
# Ignore any .env files which are not explicitly committed to the project.
 | 
						|
*.env
 | 
						|
 | 
						|
# 2024-01-23 Ignore true docker-compose files, only show examples from now on.
 | 
						|
docker-compose.yml
 | 
						|
 | 
						|
# 2024-01-24 Hide static files for Hyperling.com.
 | 
						|
Config/Hyperling.com/files/*
 |