diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-01 02:59:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 02:59:55 +0100 |
commit | 48f08ef18983729dbdcd1af9468fb4ea1ee25fbe (patch) | |
tree | 68d2b0bd8eb7f340716bbbb69ced6107da76a801 /Bugzilla/Install | |
parent | c7fd0908bd85bc5761aa28fe9c893f93394bfd4b (diff) | |
download | bugzilla-48f08ef18983729dbdcd1af9468fb4ea1ee25fbe.tar.gz bugzilla-48f08ef18983729dbdcd1af9468fb4ea1ee25fbe.tar.xz |
Bug 1437646 - Refactor entrypoint to use Bugzilla::DaemonControl
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index cbec34bdc..d205a6750 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -423,7 +423,7 @@ sub FILESYSTEM { "skins/yui3.css" => { perms => CGI_READ, overwrite => 1, contents => $yui3_all_css }, - "httpd/env.conf" => { perms => CGI_READ, + "$confdir/env.conf" => { perms => CGI_READ, overwrite => 1, contents => \&HTTPD_ENV_CONF }, ); @@ -460,8 +460,6 @@ sub FILESYSTEM { contents => HT_DEFAULT_DENY }, '.circleci/.htaccess' => { perms => WS_SERVE, contents => HT_DEFAULT_DENY }, - 'httpd/.htaccess' => { perms => WS_SERVE, - contents => HT_DEFAULT_DENY }, "$confdir/.htaccess" => { perms => WS_SERVE, contents => HT_DEFAULT_DENY }, "$datadir/.htaccess" => { perms => WS_SERVE, |