WEB - Apache 계열/각종 설정
[Apache] cache 데이터 저장 가이드 (disk cache 사용)
KeuangKuo
2023. 4. 2. 23:59
#. 참고 글
https://httpd.apache.org/docs/2.4/ko/mod/mod_cache.html
https://httpd.apache.org/docs/2.4/ko/mod/mod_cache_disk.html
https://chanchan-father.tistory.com/33
예시
#image files cache
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpeg "access plus 1 days"
</IfModule>
#cache files directory
<IfModule cache_module>
<IfModule cache_disk_module>
CacheRoot /app/apache/apache_2454/cacheroot
CacheEnable disk /
</IfModule>
</IfModule>