Yes, install apache and create a config with the index flag set. You also probably want to then add a password to protect it.
I don't see how this would solve your problem though. If you're using an Android tablet then I would just rather use a download manager, something like this maybe:
https://play.google.com/store/apps/details?id=com.acr.androiddownloadmanager
If you're using Apache vhosts then you can set up a conf file similar to this:
Code:
<VirtualHost *:80>
DocumentRoot /var/www/my_downloads
ServerName mydownloads.mysite.com
<Directory "/var/www/my_downloads">
Options +Indexes
AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /etc/httpd/.htpasswd
Require valid-user
</Directory>
</VirtualHost>