"Si tú no trabajas por tus sueños, alguien te contratará para que trabajes por los suyos”

Steve Jobs

Afiliado
Dominios3Euros

¿Que es virtual host o site en apache?

Cada site o virtual host asigna un dominio o interfaz o IP al servidor, dando la posibilidad asi de tener varios dominios en el mismo servidor.

 La idea poder acceder a directorios de nuestro servidor local apache con dominios o subdominios.

Lo primero a tener en cuenta que aparte configurar el apache , debemos modificar el fichero hosts de nuestro sistema operativo.

Hablando que tenemos un sistema operativo linux:

  •  El fichero host: Este fichero lo podemos editar añadiendo el nuevo dominio y apuntando a la IP del servidor local, lo encontrar en :  /etc/hosts
  •  Los ficheros de configuración de todos los dominios para APACHE, donde debemos crear un fichero con el nuevo host, los puedes encontrar en: /etc/apache2/sites-available

 

Localización archivos .conf que contienen los virtual host de los sites

 Con el siguiente comando puedes listar los virtualhost disponibles que puede usar con tu servidor APACHE:

ls /etc/apache2/sites-available/

 Con el siguiente comando puedes listar los virtualhost que ya están corriendo en el servidor:

ls /etc/apache2/sites-enabled/

 

Habilitar/deshabilitar sites

En apache habilitar un site es mucho más sencillo. Dejo los comandos básicos.

Por ejemplo, para habilitar un site cuyo archivo de configuración se llama blog.conf:

sudo a2ensite blog.conf
service apache2 reload

Esto creará un enlace simbólico en la carpeta sites-enabled y el ultimo comando reiniciará el servidor para dejar el site blog habilitado.

¿Y si quiero deshabilitar algún site?

Bastará con deshabilitarlo y reiniciar apache2 con los comandos:

sudo a2dissite blog.conf
service apache2 reload

 

Ejemplo de fichero configuracion site apache

Tenemos el codifo de nuestra web "miweb" en carpeta : www/laravel/miweb

Queremos acceder a ella con el subdominio miweb.dominio.es

Pues lo que hacemos es añadir a host:

127.0.0.1    localhost dominio.es
127.0.0.1       miweb.dominio.es  miweb
# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
	<VirtualHost _default_:80>
	# The ServerName directive sets the request scheme, hostname and port that
	# the server uses to identify itself. This is used when creating
	# redirection URLs. In the context of virtual hosts, the ServerName
	# specifies what hostname must appear in the request's Host: header to
	# match this virtual host. For the default virtual host (this file) this
	# value is not decisive as it is used as a last resort host regardless.
	# However, you must set it for any further virtual host explicitly.
	#ServerName www.example.com

	ServerAdmin webmaster@localhost
	DocumentRoot /home/www/public/miweb
	ServerName miweb.midominio.es
	ServerAlias miweb

	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /home/www/public/miweb >
		Options Indexes FollowSymLinks Includes ExecCGI
		AllowOverride All
		Order Deny,Allow
		Allow from all
		Require all granted
	</Directory>

	# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
	# error, crit, alert, emerg.
	# It is also possible to configure the loglevel for particular
	# modules, e.g.
	#LogLevel info ssl:warn

	ErrorLog ${APACHE_LOG_DIR}/miweb_error.log
	CustomLog ${APACHE_LOG_DIR}/miweb_access.log combined

	# For most configuration files from conf-available/, which are
	# enabled or disabled at a global level, it is possible to
	# include a line for only one particular virtual host. For example the
	# following line enables the CGI configuration for this host only
	# after it has been globally disabled with "a2disconf".
	#Include conf-available/serve-cgi-bin.conf
< /VirtualHost >

Ahora creamos el fichero miweb.conf en /etc/apache2/sites-available , donde ponermos: