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
- <virtualhost *:80="">
- ServerAdmin webmaster@localhost
- DocumentRoot /var/www/
- <directory>
- Options FollowSymLinks
- AllowOverride None
- </directory>
- <directory var="" www="">
- Options Indexes FollowSymLinks MultiViews
- AllowOverride All
- Order allow,deny
- allow from all
- </directory>
- ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
- <directory "="" usr="" lib="" cgi-bin"="">
- AllowOverride None
- Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
- Order allow,deny
- Allow from all
- </directory>
- ErrorLog /var/log/apache2/error.log
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
- CustomLog /var/log/apache2/access.log combined
- Alias /doc/ "/usr/share/doc/"
- <directory "="" usr="" share="" doc="">
- Options Indexes MultiViews FollowSymLinks
- AllowOverride None
- Order deny,allow
- Deny from all
- Allow from 127.0.0.0/255.0.0.0 ::1/128
- </directory>
- </virtualhost>
Justo debajo añadimos el nuestro,
- <virtualhost *:80="">
- ServerName interlineas
- ServerAdmin interlineas@cesser.com
- DocumentRoot "/var/www/interlineas/webroot"
- <directory var="/www/interlineas/webroot">
- Options Indexes FollowSymLinks Includes
- AllowOverride All
- Order allow,deny
- Allow from all
- </directory>
- </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