summaryrefslogtreecommitdiff
path: root/system/config/http.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/config/http.php')
-rw-r--r--system/config/http.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/system/config/http.php b/system/config/http.php
new file mode 100644
index 0000000..7cc11dd
--- /dev/null
+++ b/system/config/http.php
@@ -0,0 +1,30 @@
+<?php defined('SYSPATH') OR die('No direct access allowed.');
+/**
+ * HTTP Config
+ *
+ * @package Kohana
+ * @author Kohana Team
+ * @copyright (c) 2007-2009 Kohana Team
+ * @license http://kohanaphp.com/license
+ */
+
+/**
+ * HTTP-EQUIV type meta tags
+ *
+ */
+$config['meta_equiv'] = array
+(
+ 'cache-control',
+ 'content-type', 'content-script-type', 'content-style-type',
+ 'content-disposition',
+ 'content-language',
+ 'default-style',
+ 'expires',
+ 'ext-cache',
+ 'pics-label',
+ 'pragma',
+ 'refresh',
+ 'set-cookie',
+ 'vary',
+ 'window-target',
+); \ No newline at end of file