#. 참고 글
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>
'WEB - Apache 계열 > 각종 설정' 카테고리의 다른 글
[OHS] 사이트 접속 시 공사중 페이지로 리다이렉트 하기 (0) | 2024.01.02 |
---|---|
[Apache] yum install 로 apache 설치한 환경에서 weblogic plugin 연동 (0) | 2023.04.12 |
[OHS] OHS12c - NodeManager 패스워드 초기화 가이드 (0) | 2023.03.22 |
[Apache] Apache2.4 - server status 활성화 (0) | 2023.02.27 |
[OHS] HTTP Method 제한 방법 (apache2.4 문법 기준) (0) | 2023.02.27 |