sudo mkdir -p /www/domain
2. Cambiar permisos
sudo chown 755 /www/domain sudo chown -R www-data:www-data /www/domain
3. Editar Apache2 conf
sudo gedit /etc/apache2/apache2.conf Agregar estas líneas:
<VirtualHost *:80> # This first-listed virtual host is also the default for *:80 ServerName gabo.com ServerAlias gabo.com DocumentRoot /www/domain </VirtualHost> <Directory /www/domain/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory>
4. Agregar una entrada en /etc/hosts
127.0.0.1 gabo.com
5. Create el archivo html para prueba
touch /wwww/domain/index.html Con cualquier código HTML:
<http> <body> <h1>Hello!</h1> </body> </http>
6. Abrir dominio gabo.com en el navegador.
No hay comentarios:
Publicar un comentario