não obtendo resposta do virtualhosts apache2 ubuntu14

-1

Oi eu tenho um arquivo geometrixxig.com.conf sob minha pasta de sites habilitados. Depois de ativar esse arquivo, recarreguei o serviço do apache. Eu usei os comandos:

 sudo a2ensite geometrixxig.com 

Abaixo está o meu arquivo conf:

<VirtualHost *:80>
      ServerAdmin [email protected]
   ServerName geometrixxig.com
   ServerAlias www.geometrixxig.com
   DocumentRoot "/opt/communique/dispatcher/cache/content/geometrixx"
   RewriteEngine On
   RewriteRule ^/$ /content/geometrixx/en.html [PT,L]
   RewriteCond %{REQUEST_URI} !^/apps
   RewriteCond %{REQUEST_URI} !^/content
   RewriteCond %{REQUEST_URI} !^/etc
   RewriteCond %{REQUEST_URI} !^/home
   RewriteCond %{REQUEST_URI} !^/libs
   RewriteCond %{REQUEST_URI} !^/tmp
   RewriteCond %{REQUEST_URI} !^/var
   RewriteRule ^/(.*)$ /content/geometrixx/en/$1 [PT]
    <Directory "/opt/communique/dispatcher/cache/content/geometrixx">
     <IfModule disp_apache2.c>
           SetHandler dispatcher-handler
           ModMimeUsePathInfo On
         </IfModule>
         Options Indexes FollowSymLinks MultiViews
         AllowOverride all
         Order Allow,Deny
         Allow from all
 </Directory>
 </VirtualHost> 

Quando acerto link estou recebendo um erro: You don't have permission to access /content/geometrixx/en.html on this server.

Eu verifiquei que todas as permissões são 777, mas não entendi porque não está funcionando.

Se eu clicar link eu recebo a página

Obrigado

    
por Vivek Dhiman 20.02.2015 / 15:09

1 resposta

0

Você já tentou alterar a propriedade recursivamente?

% bl0ck_qu0te%     
por mjsa 20.02.2015 / 15:36