본문 바로가기

WEB/Apache,OHS

[Apache] cache 데이터 저장 가이드 (disk cache 사용)

#. 참고 글

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>