AWS의 lightsail 서비스를 이용하다 보면 js나 css에 서버 캐시가 잡혀 있어서 ftp로 파일을 업로드하면 바로 적용이 안되고 시간이 지나야 확인을 할 수 있다.
bitnami wordpress 로 설치된 경우가 그러한데 서버에서 비활성화 시키면 된다.
/opt/bitnami/apache2/conf/httpd.conf 를 편집기로 열어서 아래 코드를 찾는다.
Include conf/pagespeed.conf Include conf/pagespeed_libraries.conf
아래처럼 #으로 주석 처리한다.
#Include conf/pagespeed.conf #Include conf/pagespeed_libraries.conf
그런 후에 아파치를 재시작 한다.
sudo /opt/bitnami/ctlscript.sh restart apache