First, for view your folder on a web browser, you need to activate de apache server a configure it for show directories, then
chkconfig httpd on
service httpd start
EDIT your config file, or add a new config file for directory in your http's config.d directory with these TAGs
Quote:
Alias /DIRECTORY /DIRECTORY
<Directory "/YOUR_DIRECTORY_FULL_PATH">
Options Indexes Includes FollowSymLinks
AllowOverride None
Allow from all
Order allow,deny
</Directory>
|
Like you see, that is simple, very simple, but the FTP server not
Second, for share via FTP, you need to activate vsftpd, then:
chkconfig vsftpd on
service vsftpd stop
To configure the supported FTP server on Red Hat EL4, take a look at vsftpd config file on:
/etc/vsftpd/vsftpd.conf
And then start vsftpd server
service vsftpd start
enjoy, bye bye ...