SO: Linux Mint Petra.
/etc/hosts:
Código:
Creando sites - availables:127.0.0.1 localhost 127.0.0.1 zendprojects 127.0.0.1 zend # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts
Código:
Agrego los siguiente:sudo gedit /etc/apache2/sites-available/zend
Código:
Y por ultimo activo el site con:<VirtualHost *:80>
ServerName zend
DocumentRoot /var/www/projects/public
SetEnv APPLICATION_ENV "development"
<Directory /var/www/projects/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Código:
Y me tira este error:sudo a2ensite zend
Código:
ERROR: Site zend does not exist!


