====== httpdirindex para los ftp ======
1.- Consiga el paquete con cualquier administrador de red (JC, RIMED, SLD) antes estaba [[http://ftp.vc.rimed.cu/linux/tools/httpdirindex-1.1.0.tar.gz|aquí]]
2.- descompacte el paquete en el directorio
/var/www/httpdirindex
3.- cree un virtualhost que se llame httpdirindex con esto dentro
#
# Alias for HTTP Directory Index.
#
Alias /httpdirindex/ "/var/www/httpdirindex/"
Options Indexes MultiViews
AllowOverride None
Order Allow,Deny
Allow From All
4.- si su ftp sale vía web de este modo http://ftp.midominio.cu
es producto que tiene ya creado un virtualhost para el. si lo tiene así pues añádele esta linea
DirectoryIndex /httpdirindex/httpdirindex.php
si su ftp no sale vía web, haga una entrada en el dns que se llame ftp y que responda al IP donde esta el ftp y cree un virtualhost que se llame ftp con esto dentro
ServerName ftp.vcl.rimed.cu
ServerAdmin wilfredom@isp.vcl.rimed.cu
DocumentRoot /var/www/ftp/
DirectoryIndex /httpdirindex/httpdirindex.php
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
5.- pida en su navegador http://ftp.midominio.cu
si da un error #43 instale esto
aptitude install libapache2-mod-php5