aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-22 14:58:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-04 16:22:08 +0200
commit1de1e45d2496e649f770530febcbe9c0dd37aba0 (patch)
tree05f0b23de31006e3b02482795ebccb6b54adb40d /etc
parent563a7c529e35298569e529cc88035f94ab7e5895 (diff)
Bugfix: wrong apache configuration Location directive
Diffstat (limited to 'etc')
-rw-r--r--etc/brep-apache2.conf9
1 files changed, 5 insertions, 4 deletions
diff --git a/etc/brep-apache2.conf b/etc/brep-apache2.conf
index 79ebc37..7f999c3 100644
--- a/etc/brep-apache2.conf
+++ b/etc/brep-apache2.conf
@@ -10,16 +10,17 @@
# and the start of the repository. For example, root value /pkg/ means
# the repository URL is http://example.org/pkg/. Specify / to use the
# web server root (e.g., http://example.org/). If using a different
- # repository root, don't forget to also change Alias directives below.
+ # repository root, don't forget to also change Location and Alias
+ # directives below.
#
brep-root /pkg/
- <Location "/pkg/">
+ <Location "/pkg">
SetHandler brep
<IfModule dir_module>
- DirectoryIndex disabled
- DirectorySlash Off
+ DirectoryIndex disabled
+ DirectorySlash Off
</IfModule>
</Location>