response-headers.yml 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. cache: &cache
  2. Cache-Control: public, no-cache
  3. Surrogate-Control: max-age=120
  4. Vary: Accept-Encoding, Accept-Language
  5. dont_cache: &dont_cache
  6. Cache-Control: public, no-cache, max-age=0
  7. private_dont_cache: &private_dont_cache
  8. Cache-Control: private, no-cache, no-store, max-age=0, must-revalidate
  9. Pragma: no-cache
  10. Expires: Fri, 01 Jan 1990 00:00:00 GMT
  11. cors: &cors
  12. Access-Control-Allow-Origin: "*"
  13. action_page:
  14. index:
  15. <<: *cache
  16. <<: *cors
  17. show: *cache
  18. show_by_institution: *cache
  19. embed_iframe: *cache
  20. signature_count:
  21. <<: *private_dont_cache
  22. <<: *cors
  23. devise/confirmations:
  24. new: *dont_cache
  25. devise/passwords:
  26. new: *dont_cache
  27. devise/unlock:
  28. new: *dont_cache
  29. petitions:
  30. recent_signatures:
  31. <<: *cache
  32. Surrogate-Control: max-age=60
  33. registrations:
  34. new: *dont_cache
  35. sessions:
  36. new: *dont_cache
  37. destroy: *private_dont_cache
  38. users:
  39. show: *private_dont_cache
  40. welcome:
  41. index: *cache