From: Tilghman Lesher Date: Mon, 23 Mar 2009 23:28:20 +0000 (+0000) Subject: Allow browsers to cache images and other static content. X-Git-Tag: 11.0.0-beta1~5191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1745773f305ca3818f78aa802818486f37a99347;p=thirdparty%2Fasterisk.git Allow browsers to cache images and other static content. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@183865 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index 27ae40711d..934eaf0118 100644 --- a/main/http.c +++ b/main/http.c @@ -213,7 +213,7 @@ static struct ast_str *static_callback(struct ast_tcptls_session_instance *ser, "Server: Asterisk/%s\r\n" "Date: %s\r\n" "Connection: close\r\n" - "Cache-Control: no-cache, no-store\r\n" + "Cache-Control: private\r\n" "Content-Length: %d\r\n" "Content-type: %s\r\n\r\n", ast_get_version(), buf, (int) st.st_size, mtype);