Using the web browser, I have a requirement to access a directory on a Linux server hosting around 2,00,000 files in it.
I am using the 'Alias' directive in apache to achieve this requirement. Please see below -
Alias /barcodes/ "/m01/apps/codes/barcodes/"
<Directory "/m01/apps/codes/barcodes/">
Options +Indexes
IndexOptions +TrackModified
AllowOverride None
Order allow,deny
Allow from all
#Doing IndexOrderDefault so to see the files in a descending order (by date/timestamp)
IndexOrderDefault Descending Date
</Directory>
Issue - The web browser takes a lot of time in displaying up the files from the directory and becomes too slow to access.
Appreciate if someone can help in achieving this requirement.
Thanks..