diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-22 14:58:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-04 16:22:08 +0200 |
commit | 1de1e45d2496e649f770530febcbe9c0dd37aba0 (patch) | |
tree | 05f0b23de31006e3b02482795ebccb6b54adb40d /INSTALL-DEV | |
parent | 563a7c529e35298569e529cc88035f94ab7e5895 (diff) |
Bugfix: wrong apache configuration Location directive
Diffstat (limited to 'INSTALL-DEV')
-rw-r--r-- | INSTALL-DEV | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/INSTALL-DEV b/INSTALL-DEV index 92d7d43..2d03bbd 100644 --- a/INSTALL-DEV +++ b/INSTALL-DEV @@ -66,13 +66,21 @@ replacing <BREP-OUT-ROOT> and <BREP-SRC-ROOT> with the actual absolute paths # Load the brep module. # LoadModule brep_module <BREP-OUT-ROOT>/brep/mod_brep.so - SetHandler brep # Repository root. Use / for web server root. And don't forget to also - # update the Alias directives below. + # update the Location and Alias directives below. # brep-root /pkg/ + <Location "/pkg"> + SetHandler brep + + <IfModule dir_module> + DirectoryIndex disabled + DirectorySlash Off + </IfModule> + </Location> + # Brep module configuration. # brep-conf <BREP-SRC-ROOT>/etc/brep-module.conf |