diff --git a/services/forge/troubleshooting.myco b/services/forge/troubleshooting.myco
index 5a55160..7d8aba3 100644
--- a/services/forge/troubleshooting.myco
+++ b/services/forge/troubleshooting.myco
@@ -102 +102,14 @@ OLDER_THAN: 24h
`root@paimon:/etc/docker-compose/gitea# systemctl restart docker-compose@gitea.service`
+
+2024-01-06 3:34 PM:
+symys found the server had run out of storage again and followed the above process manually. As this was the third time the server ran out of storage recently, symys changed the gitea configuration as follows:
+`root@paimon:/etc/docker-compose/gitea# vim /var/lib/docker/volumes/gitea_gitea/_data/gitea/conf/app.ini`
+```
+[cron.archive_cleanup]
+ENABLED = true
+RUN_AT_START = true
+SCHEDULE = @every 15m
+OLDER_THAN = 15m
+```
+`root@paimon:/etc/docker-compose/gitea# systemctl restart docker-compose@gitea.service`
+I think this more aggressive configuration should be okay, as a repo doesn't really need to be cached for more than 15 minutes except under rare circumstances.
\ No newline at end of file