Buenas.
Estoy tratando de configurar Apache 2.2
Lo que quiero hacer es habilitar por ejemplo un directorio donde
pondria un pagina. Necesito tanto documentos HTML como tambien CGI.
Por ejemplo:
/var/www/mi_web/html
/home/yo/mi_web/html
Para ello, agrege dentro de /etc/apache2/sites-availables
un archivo llamado mi_web, el cual tiene dentro
NameVirtualHost *
<VirtualHost *>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/yo/mi_web/html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
ScriptAlias /cgi-bin/ /home/yo/mi_web/cgi-bin
<Directory "/home/yo/mi_web/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
ServerSignature On
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>
Alguien podria indicarme donde tengo el error o si me falta tocar
algun otro archivo de configuracion porque no puedo hacerlo funcionar.
Muchas gracias. Saludos.
--
Para desuscribirte tenés que visitar la página
https://listas.linux.org.ar/mailman/listinfo/lugar-gral/
/* Publica y encontra trabajo relacionado con softlibre en
http://www.usla.org.ar/modules/jobs/ */
Si tenés algún inconveniente o consulta escribí a mailto:[EMAIL PROTECTED]