From 246c398692f6d50acac3b99e397fc5959eb130f3 Mon Sep 17 00:00:00 2001 From: Mike Ruckman Date: Fri, 17 Jul 2015 20:56:14 +0000 Subject: [PATCH] allow indexing to follow symlinks on qadevel --- files/httpd/newvirtualhost.conf.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/files/httpd/newvirtualhost.conf.j2 b/files/httpd/newvirtualhost.conf.j2 index 96e2969434..7b70b78f42 100644 --- a/files/httpd/newvirtualhost.conf.j2 +++ b/files/httpd/newvirtualhost.conf.j2 @@ -57,6 +57,8 @@ DocumentRoot {{ item.document_root }} + Options Index FollowSymLinks + @@ -67,5 +69,7 @@ RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NE] + {% else %} + Options Index FollowSymLinks {% endif %}