diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-10-17 17:23:21 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-10-17 17:23:21 +0200 |
commit | a15e9311146867b4decacee483f0074d93bf7661 (patch) | |
tree | d5c1b3a0538b6fdb06b5960d86ece39540c69496 /Bugzilla/Install | |
parent | 62ae33ffa16c22e9705bd22e48fb8299225462f4 (diff) | |
download | bugzilla-a15e9311146867b4decacee483f0074d93bf7661.tar.gz bugzilla-a15e9311146867b4decacee483f0074d93bf7661.tar.xz |
Bug 887117 - Move the compiled template cache dir to a directory in the document root to avoid storing on NFS
r=glob
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 1abac0154..21f07f2d5 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -281,6 +281,7 @@ sub FILESYSTEM { # Directories that cgi scripts can write to. "$datadir/db" => DIR_CGI_WRITE, $attachdir => DIR_CGI_WRITE, + $template_cache => DIR_CGI_WRITE, $graphsdir => DIR_CGI_WRITE | DIR_ALSO_WS_SERVE, $webdotdir => DIR_CGI_WRITE | DIR_ALSO_WS_SERVE, # Directories that contain content served directly by the web server. |