I'm using the Apache on my home Linux computer as a temporary server to share a few files between some friends. As such I just want a directory listing for these files, along with the sub-directories. I have the indexes option in the directory paramater, and the directory is viewed. Problem is, only one sub-directory is viewable, while the others are not listed. I have the permissions and ownerships of all files and directories the same, but nothing changes. And if I try to force into the hidden directory, I get a message about not having the necessary permissions. Any help here?
Directory directive from conf file:
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
Permissions of Directory:
drwxr-xr-x. 5 apache users 4096 Jan 22 17:17 DND
drwxr-xr-x. 11 apache users 4096 Jan 16 08:16 Pathfinder
-rwxr-xr-x. 1 apache users 119 Jan 19 17:30 README
Pathfinder and everything in it show up, and README only works when I push it through the URL. DND doesn't show, nor does it work when I push it through the URL.
<Directory /> Options Indexes FollowSymLinks AllowOverride None </Directory>If there is anything else needed, I'll post another comment. – psion Jan 23 at 5:17ls -lin the relevant directory. – Christian Mann Jan 23 at 5:24drwxr-xr-x. 5 apache apache 4096 Jan 22 17:17 DND drwxr-xr-x. 11 apache apache 4096 Jan 16 08:16 Pathfinder -rwxr-xr-x. 1 apache apache 119 Jan 19 17:30 READMEPathfinder is the only directory that shows up, and all the files and sub-directories show up. The README file and DND folder do not show up. Forcing README works, but not DND. – psion Jan 23 at 5:32