diff --git a/apache/vhosts/standard.tmpl b/apache/vhosts/standard.tmpl
index af6c75edfbe5fb197f0d9ebdf3f303dc7a9f094b..ff79e1f3c0880fde313b3a5f82f14f33a5270901 100644
--- a/apache/vhosts/standard.tmpl
+++ b/apache/vhosts/standard.tmpl
@@ -28,7 +28,7 @@
     'Timeout': site.get('Timeout'),
     'LimitRequestFields': site.get('LimitRequestFields'),
 
-    'Directory_default': '{0}/{1}'.format(map.wwwdir, sitename),
+    'Directory_default': site.get('DocumentRoot', '{0}/{1}'.format(map.wwwdir, sitename)),
     'Directory': {
         'Options': '-Indexes +FollowSymLinks',
         'Order': 'allow,deny',
diff --git a/pillar.example b/pillar.example
index 4bf2a51df740e4465e3a8d453720d1c809c521d8..bfbd68e0c11c4850c68912a7b6d6147faf9faf7f 100644
--- a/pillar.example
+++ b/pillar.example
@@ -84,7 +84,7 @@ apache:
       SSLCertificateChainFile: /etc/ssl/mycert.chain.pem # if you require a chain of server certificates file
 
       Directory:
-        # "default" is a special case; Adds ``/path/to/www/dir/example.com``
+        # "default" is a special case; uses DocumentRoot value
         # E.g.: /var/www/example.com
         default:
           Options: -Indexes +FollowSymLinks