# Shahbag Phone Organ — API no-cache directives
# Prevents browser/CDN/server caching of API JSON responses.
# Without this, stats and other endpoints can return stale data.

<IfModule mod_headers.c>
  Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0"
  Header set Pragma "no-cache"
  Header set Expires "0"
</IfModule>

# Also disable ETag-based caching
FileETag None
