Fix: nginx duplicate MIME type, update version to 0.2.1, improve log rotation
Some checks failed
Deploy to Production / Deploy to Server (push) Failing after 22s

- Remove duplicate text/html from nginx gzip_types (fixes nginx -t warning)
- Update hardcoded API version from 0.2.0 to 0.2.1 to match package.json
- Update logrotate config: daily rotation, 7 days retention, improved postrotate
- Add Docker logging configuration with size/file limits
This commit is contained in:
openclawd 2026-02-16 08:36:55 +00:00
parent 7b55a1ddc6
commit 76714d799e
4 changed files with 11 additions and 7 deletions

View file

@ -1,13 +1,13 @@
/var/log/docfast*.log {
weekly
rotate 4
/var/log/docfast/*.log {
daily
rotate 7
compress
delaycompress
missingok
notifempty
create 644 root root
postrotate
# Send USR1 signal to dockerized apps to reopen log files
/bin/kill -USR1 $(cat /var/run/docker.pid 2>/dev/null) 2>/dev/null || true
# Restart docker container to reopen log files
docker restart docfast-docfast-1 >/dev/null 2>&1 || true
endscript
}