Friday, May 15, 2009

Configurar apache Virtual Hosts

Siguiendo el hilo de anteriores posts vamos a comentar como configurar apache con Virtual hosts.

En el archivo default dentro de /etc/apache2/sites-available/
es donde vamos a poner nuestros virtual hosts, de primeras el archivo contiene el virtual host por defecto

  1. <virtualhost *:80="">  
  2.  ServerAdmin webmaster@localhost  
  3.   
  4.  DocumentRoot /var/www/  
  5.  <directory>  
  6.   Options FollowSymLinks  
  7.   AllowOverride None  
  8.  </directory>  
  9.  <directory var="" www="">  
  10.   Options Indexes FollowSymLinks MultiViews  
  11.   AllowOverride All  
  12.   Order allow,deny  
  13.   allow from all  
  14.  </directory>  
  15.   
  16.  ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/  
  17.  <directory "="" usr="" lib="" cgi-bin"="">  
  18.   AllowOverride None  
  19.   Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch  
  20.   Order allow,deny  
  21.   Allow from all  
  22.  </directory>  
  23.   
  24.  ErrorLog /var/log/apache2/error.log  
  25.   
  26.  # Possible values include: debug, info, notice, warn, error, crit,  
  27.  # alert, emerg.  
  28.  LogLevel warn  
  29.   
  30.  CustomLog /var/log/apache2/access.log combined  
  31.   
  32.     Alias /doc/ "/usr/share/doc/"  
  33.     <directory "="" usr="" share="" doc="">  
  34.         Options Indexes MultiViews FollowSymLinks  
  35.         AllowOverride None  
  36.         Order deny,allow  
  37.         Deny from all  
  38.         Allow from 127.0.0.0/255.0.0.0 ::1/128  
  39.     </directory>  
  40.   
  41. </virtualhost>  


Justo debajo añadimos el nuestro,

  1. <virtualhost *:80="">  
  2.   
  3.       ServerName interlineas  
  4.       ServerAdmin interlineas@cesser.com  
  5.   
  6.       DocumentRoot "/var/www/interlineas/webroot"  
  7.   
  8.       <directory var="/www/interlineas/webroot">  
  9.   
  10.               Options Indexes FollowSymLinks Includes  
  11.   
  12.               AllowOverride All  
  13.   
  14.               Order allow,deny  
  15.   
  16.               Allow from all  
  17.   
  18.       </directory>  
  19.   
  20. </virtualhost>  

Ahora editamos nuestro hosts sudo gedit /etc/hosts y añadimos la siguiente linea

127.0.0.1 interlineas

El valor del ServerName del VirualHost debe de conincidir con la entrada en el hosts.

Ahora solo queda reiniciar apache sudo /etc/init.d/apache2 restart

Y poner la url en nuestro navegador http://interlineas

No comments:

Post a Comment