feat: SEO + Nginx optimization
Some checks failed
Deploy to Production / Deploy to Server (push) Failing after 21s

- Update sitemap.xml to include /v1/health endpoint
- Add proper 404 handling (JSON for API paths, HTML for browser paths)
- Create optimized nginx config with gzip, cache headers, specific locations
- Add logrotate configuration for DocFast logs
- Add security headers and static asset caching
This commit is contained in:
openclawd 2026-02-16 08:30:14 +00:00
parent 9541ae1826
commit 210e71e3d8
4 changed files with 152 additions and 0 deletions

13
logrotate-docfast Normal file
View file

@ -0,0 +1,13 @@
/var/log/docfast*.log {
weekly
rotate 4
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
endscript
}