반응형
아파치 디스크 캐싱을 사용할 경우
캐싱파일을 자동으로 삭제하기 위해 사용되는 데몬이다.
설정 방법은 아래와 같다
# vi /etc/sysconfig/htcacheclean
#
# Configuration options for systemd service, htcacheclean.service.
# See htcacheclean(8) for more information on available options.
#
# Interval between cache clean runs, in minutes
# 캐싱삭제 간격 (분)
INTERVAL=15
# Default cache root.
# 캐싱파일이 저장된 폴더명
CACHE_ROOT=/dev/shm
# Cache size limit in bytes (K=Kbytes, M=Mbytes)
# 최대 캐싱 용량 설정
LIMIT=2048M
# Any other options...
# 그외 기타 설정을 이곳에 적으면 된다
OPTIONS=
설정을 모두 마무리 한다음
아래와 같이 데몬을 실행하면 된다
# service htcacheclean start
데몬이 정상적으로 설정되어 있는지 확인해 보고
캐싱도 잘 삭제되는지 봅니다.
https://httpd.apache.org/docs/2.4/ko/programs/htcacheclean.html
728x90
반응형
'linux > apache' 카테고리의 다른 글
인터넷 페이지 접속시 3초정도 대기후 접속 되는 현상? (0) | 2023.01.17 |
---|---|
htcacheclean 부팅시 자동시작 (0) | 2022.10.26 |
cache와 access-control-allow-origin 동시에 잡기 다중도메인 (0) | 2021.09.30 |
rewrite 특정폴더 설정 제외 (0) | 2021.09.28 |
rewrite 특정 query만 삭제하기 (0) | 2021.09.28 |