0
Google give 다음 예제는 GWT 앱을 제공하기 위해 Apache 서버를 설정하는 예입니다.GWT 클라이언트 응용 프로그램의 파일 만료를 처리하기 위해 app.yaml에 추가 할 항목은 무엇입니까?
AppEngine (GAE) app.yaml 파일에 해당하는 항목은 무엇입니까?
<Files *.nocache.*>
ExpiresActive on
ExpiresDefault "now"
Header merge Cache-Control "public, max-age=0, must-revalidate"
</Files>
<Files *.cache.*>
ExpiresActive on
ExpiresDefault "now plus 1 year"
</Files>