diff options
author | Arno Töll <arno@debian.org> | 2013-06-08 17:45:28 +0200 |
---|---|---|
committer | Arno Töll <arno@debian.org> | 2013-06-08 17:45:28 +0200 |
commit | df2364aa7e19e0301e61c9d06cf970279f6e1762 (patch) | |
tree | 93e61e45b44123ac184d538ecec210ce8749064a | |
parent | b29fa7b42b5208d4e605b3876c20bfd5b836c732 (diff) | |
download | apache2-df2364aa7e19e0301e61c9d06cf970279f6e1762.tar.gz |
Allow access to /srv by default
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/config-dir/apache2.conf | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 8564b64d..9793dc87 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apache2 (2.4.4-7) UNRELEASED; urgency=low + + * Allow access to /srv, beyond /var/www for user supplied vhosts by default. + Thanks to joeyh for pointing this out. + + -- Arno Töll <arno@debian.org> Sat, 08 Jun 2013 17:44:55 +0200 + apache2 (2.4.4-6) unstable; urgency=low * Denote exact versions breaking gnome-user-share now that Gnome maintainers diff --git a/debian/config-dir/apache2.conf b/debian/config-dir/apache2.conf index 75839a12..9411bc27 100644 --- a/debian/config-dir/apache2.conf +++ b/debian/config-dir/apache2.conf @@ -165,6 +165,13 @@ Include ports.conf Require all granted </Directory> +<Directory /srv/> + Options Indexes FollowSymLinks + AllowOverride None + Require all granted +</Directory> + + # AccessFileName: The name of the file to look for in each directory |