1.- Consiga el paquete con cualquier administrador de red (JC, RIMED, SLD) antes estaba 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/" <Directory "/var/www/httpdirindex"> Options Indexes MultiViews AllowOverride None Order Allow,Deny Allow From All </Directory>
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
<VirtualHost *> ServerName ftp.vcl.rimed.cu ServerAdmin wilfredom@isp.vcl.rimed.cu DocumentRoot /var/www/ftp/ DirectoryIndex /httpdirindex/httpdirindex.php <Directory /var/www/ftp/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ErrorLog /var/log/apache2/error.log LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On </VirtualHost>
5.- pida en su navegador
http://ftp.midominio.cu
si da un error #43 instale esto
aptitude install libapache2-mod-php5