auto-save 2026-07-13

This commit is contained in:
Ray
2026-07-13 02:00:15 -04:00
parent dab5a4ebc6
commit 473729267c
14 changed files with 579 additions and 38 deletions
@@ -0,0 +1,23 @@
# .gitignore for /etc/nginx/ (and similar system config dirs)
Patterns to exclude from a system config git repo:
```
# Nginx log files
*.log
access.log
error.log
# Backup files (generated by config management or manual edits)
*.bak-*
# Generated/temporary files
*.swp
*.swo
*~
.DS_Store
Thumbs.db
```
The `*.bak-*` glob is critical — nginx config tools and manual edits often create timestamped
backups like `nginx.conf.bak-20260707-184147`. Without this, every backup pollutes the repo.