On Fedora-derived systems, the apache httpd package installs modules under /usr/lib{,64}/httpd/modules, depending on whether the system is 32- or 64-bit. A symlink from /etc/httpd/modules is created which points to the proper module path. Use it to support apache on Fedora, CentOS, and Red Hat systems. Written with assistance of Todd Zullinger <tmz@xxxxxxxxx> Signed-off-by: Sebastian Kisela <skisela@xxxxxxxxxx> --- git-instaweb.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-instaweb.sh b/git-instaweb.sh index 47e38f34c..e42e58528 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -332,6 +332,8 @@ apache2_conf () { module_path="/usr/lib/httpd/modules" test -d "/usr/lib/apache2/modules" && module_path="/usr/lib/apache2/modules" + test -d "/etc/httpd/modules" && + module_path="/etc/httpd/modules" fi bind= test x"$local" = xtrue && bind='127.0.0.1:' -- 2.18.0.99.gd2ee41e0e