Vorrei rendere il workspace di Jenkins fruibile come risorsa web
Per fare questo ho provato a configurare un virtual host nel modo seguente:


codice:
<Directory /var/www/html/testdrupal.localhost>        
   Require all granted    
</Directory>    
<VirtualHost *:80>        
    DirectoryIndex index.html index.htm index.php        
    ServerName testdrupal.localhost        
    ServerAlias www.testdrupal.localhost        
    ServerAdmin webmaster@localhost        
    DocumentRoot /var/www/html/testdrupal.localhost/public_html/drupaltest2/web        
    Alias /testing /var/lib/jenkins/workspace/DrupalTestCI/web            

    ErrorLog /var/www/html/testdrupal.localhost/logs/error.log        
    CustomLog /var/www/html/testdrupal.localhost/logs/access.log combined            

    <Directory /var/www/html/testdrupal.localhost>                
        #Options -Indexes -FollowSymLinks +MultiViews            
        #AllowOverride All            

        RewriteEngine on              
        RewriteBase /              
        RewriteCond %{REQUEST_FILENAME} !-f              
        RewriteCond %{REQUEST_FILENAME} !-d              
        RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]        
     </Directory>    
</VirtualHost>
Tuttavia sul browser ottengo:

testdrupal.localhost OK
testdrupal.localhost/testing FORBIDDEN


Apache sta girando con credenziali USER - GROUP jenkins - jenkins e i permessi della directory di jenkins sono 755

Cosa sto sbagliando?

Manca qualcosa a livello di configurazione?