23 lines
		
	
	
		
			356 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			356 B
		
	
	
	
		
			Plaintext
		
	
	
	
| # GitLab logrotate settings
 | |
| # based on: http://stackoverflow.com/a/4883967
 | |
| 
 | |
| /home/git/gitlab/log/*.log {
 | |
|     weekly
 | |
|     missingok
 | |
|     rotate 52
 | |
|     compress
 | |
|     delaycompress
 | |
|     notifempty
 | |
|     copytruncate
 | |
| }
 | |
| 
 | |
| /home/git/gitlab-shell/gitlab-shell.log {
 | |
|     weekly
 | |
|     missingok
 | |
|     rotate 52
 | |
|     compress
 | |
|     delaycompress
 | |
|     notifempty
 | |
|     copytruncate
 | |
| }
 |